Mercurial > hg > smallbox
view toolboxes/alps/ALPS/thresh.m @ 181:0dc98f1c60bb danieleb
minor edits
author | Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk> |
---|---|
date | Thu, 05 Jan 2012 15:46:13 +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;