ifmethod2handle.m
来自「一种新的时频分析方法的matlab源程序。」· M 代码 · 共 13 行
M
13 行
function iffunc = ifmethod2handle(ifmethod)
% ifmethod2handle translates old-style instantaneous frequency method names
% to function handles. This is depreciated and functionality relying on it
% will be removed. Function handles just look and work so much nicer.
switch ifmethod
case 'hilbert'; iffunc = @fah;
case 'acos'; iffunc = @faacos;
case 'zc'; iffunc = @faz;
otherwise
iffunc = [];
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?