annotate toolboxes/alps/ALPS/thresh.m @ 229:ae71e160f80c luisf_dev

removed duplicate file.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 18 Apr 2012 13:54:21 +0100
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;