📄 makesinewindow.m
字号:
function w = MakeSineWindow(boxlen,sigma)
% MakeSineWindow -- Make a nice window out of the IteratedSine function.
% Inputs
% boxlen abscissa values for window evaluation -boxlen <= t < boxlen
% sigma scale of the window, controls the size of the
% effective support
% Outputs
% w values of the window
% See Also
% IteratedSine
%
% By Emmanuel Candes, 2003-2004
ix = ((-boxlen:(boxlen -1)) + .5)./boxlen;
w = IteratedSineWindow(ix./sigma);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -