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

Other systems

Development Platform:

Matlab

  1. function [x,thresh] = SUREThresh2(y)
  2. %
  3. %%%%%%It's My Own Function!!!
  4. %
  5. % SUREThresh2 -- Adaptive Threshold Selection Using Principle of SURE for 2-D Signal
  6. %  Usage 
  7. %    thresh = SUREThresh2(y)
  8. %  Inputs 
  9. %    y        2-d Noisy Data with Std. Deviation = 1
  10. %  Outputs 
  11. %    x        Estimate of mean vector
  12. %    thresh   Threshold used
  13. %
  14. %  Description
  15. %    SURE referes to Stein's Unbiased Risk Estimate.
  16. %
  17. thresh = ValSUREThresh2(y);
  18. x      = SoftThresh(y,thresh);