Mercurial > hg > smallbox
view DL/Majorization Minimization DL/softthreshold.m @ 168:ff866a412be5 danieleb
Removed tag danieleb
| author | Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk> | 
|---|---|
| date | Tue, 20 Sep 2011 15:52:33 +0100 | 
| parents | b14209313ba4 | 
| children | 
line wrap: on
 line source
% Soft threshold operator for matrices % [Y] = softthreshold(X,theta) % X : input matrix % theta : thresholding parameter function [Y] = softthreshold(X,theta) Y = X - min(theta,abs(X)).*sign(X);
