makesinewindow.m

来自「完整的curvelet变换(2.0)实现」· M 代码 · 共 16 行

M
16
字号
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 + =
减小字号Ctrl + -
显示快捷键?