Mercurial > hg > smallbox
view toolboxes/alps/ALPS/thresh.m @ 213:46b9937982f6 luisf_dev
merge
author | bmailhe |
---|---|
date | Wed, 21 Mar 2012 18:13:43 +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;