meyer_sf_vkbook.m

来自「A set of C++ and Matlab routines impleme」· M 代码 · 共 17 行

M
17
字号
function theta = Meyer_sf_vkbook(x)

%   The smooth passband function for constructing Meyer filters
%   This one is from the VK book
%    
%   Yue Lu and Minh N. Do
%   First Created: 08-26-05
%   Last Revision: 08-26-05
%

theta = 3 * x .^ 2 - 2 * x .^ 3;
theta(x <= 0) = 0;
theta(x >= 1) = 1;

%%	This software is provided "as-is", without any express or implied
%%	warranty. In no event will the authors be held liable for any 
%%	damages arising from the use of this software.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?