?? 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 + -