view toolboxes/alps/ALPS/thresh.m @ 205:609dc3345ef0 luisf_dev

Sets up the SMALL_path variable in the Setup script.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 20 Mar 2012 16:06:48 +0000
parents 0de08f68256b
children
line wrap: on
line source
function x= thresh(x, K)

[~, ind] = sort(abs(x), 'descend');
x(ind(K+1:end))= 0;