SUREThresh2.m
上传用户:sla11nk8
上传日期:2013-03-09
资源大小:21k
文件大小:0k
源码类别:

其他

开发平台:

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);