iteratedsinewindow.m
来自「完整的curvelet变换(2.0)实现」· M 代码 · 共 21 行
M
21 行
function w = IteratedSineWindow(t)
% IteratedSine -- smooth window
% Usage
% w = IteratedSineWindow(t)
% Inputs
% t abscissa values for window evaluation
% Outputs
% w beta(t + 1/2) beta(1/2 - t)
% beta is the iterated sine cut-off function
% 0 if t > 1 and 0 if t < -1.
%
% See Also IteratedSine, MakeWindow
%
% By Emmanuel Candes, 2003-2004
w = IteratedSine(t+1/2).*IteratedSine(1/2 - t);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?