surethresh.m

来自「去噪工具包」· M 代码 · 共 30 行

M
30
字号
function [x,thresh] = SUREThresh(y)
% SUREThresh -- Adaptive Threshold Selection Using Principle of SURE
%  Usage 
%    thresh = SUREThresh(y)
%  Inputs 
%    y        Noisy Data with Std. Deviation = 1
%  Outputs 
%    x        Estimate of mean vector
%    thresh   Threshold used
%
%  Description
%    SURE referes to Stein's Unbiased Risk Estimate.
%
	thresh = ValSUREThresh(y);
	x      = HardThresh(y,thresh);    

%
% Copyright (c) 1993-5.  Jonathan Buckheit, David Donoho and Iain Johnstone
%
    
    
%   
% Part of WaveLab Version 802
% Built Sunday, October 3, 1999 8:52:27 AM
% This is Copyrighted Material
% For Copying permissions see COPYING.m
% Comments? e-mail wavelab@stat.stanford.edu
%   
    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?