annotate toolboxes/alps/ALPS/thresh.m @ 206:2882992f9e6e luisf_dev

added headeer to init file
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 20 Mar 2012 16:17:12 +0000
parents 0de08f68256b
children
rev   line source
ivan@154 1 function x= thresh(x, K)
ivan@154 2
ivan@154 3 [~, ind] = sort(abs(x), 'descend');
ivan@154 4 x(ind(K+1:end))= 0;