annotate toolboxes/alps/ALPS/thresh.m @ 242:ae649f2349a1

Added tag ver_2.0 for changeset 423de9f24d98
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 25 Apr 2012 15:05:50 +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;