例程13-5.m
来自「小波分析与matlab实现的配套源程序」· M 代码 · 共 14 行
M
14 行
% 当前的延拓模式是补零
% 产生高斯白噪声
init = 2055415866; randn('seed',init);
x = randn(1,1000);
% 寻找各个阈值选择规则的阈值
% 使用SURE的自适应阈值
thr1 = thselect(x,'rigrsure')
% 固定形式阈值
thr2 = thselect(x,'sqtwolog')
% 启发式阈值
thr3 = thselect(x,'heursure')
% 极小极大阈值
thr4 = thselect(x,'minimaxi')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?