📄 ifmethod2handle.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -