LAWMLShrink.m
Upload User: sla11nk8
Upload Date: 2013-03-09
Package Size: 21k
Code Size: 0k
Category:

Other systems

Development Platform:

Matlab

  1. function [w1] = LAWMLShrink(y,sigmaX,sigmaN)
  2. % LAWML Shrinkage Function
  3. % Usage :
  4. %      [w1] = LAWMLShrink(y,sigmaX,sigmaN)
  5. % OUTPUT :
  6. %      w1 - the denoised coefficient
  7. temp1=sigmaX.^2;
  8. temp2=temp1+sigmaN.^2;
  9. w1=temp1.*y./temp2;