Mercurial > hg > smallbox
view toolboxes/alps/ALPS/thresh.m @ 231:b1db9e090542 luisf_dev
fixed comments
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 18 Apr 2012 18:12:15 +0100 |
parents | 0de08f68256b |
children |
line wrap: on
line source
function x= thresh(x, K) [~, ind] = sort(abs(x), 'descend'); x(ind(K+1:end))= 0;