📄 说明.txt
字号:
对于该程序包可在网上下载,不过自1996年开发后,在1999年有更新后就再也没有改过。
http://gdr-isis.org/Applications/tftb/iutsn.univ-nantes.fr/auger/tftb.html
他是适合4.0及5.0版本的
因此对于6.0及以上版本可能会有些问题,我把主要的一个问题改正了,
他发生在tfrview.m文件中
MatlabVersion=version; MatlabVersion=str2num(MatlabVersion(1));
%I hope that future Matlab versions will be more compatible
if (MatlabVersion==4)
TickLabelStr='TickLabels';
elseif (MatlabVersion==5)
TickLabelStr='Ticklabel';
else
error('unsupported matlab version. please send an email.');
end;
更改为
MatlabVersion=version; MatlabVersion=str2num(MatlabVersion(1));
%I hope that future Matlab versions will be more compatible
if (MatlabVersion==4)
TickLabelStr='TickLabels';
elseif (MatlabVersion>=5) %%%%%%%%%%%%%%%% 对于5.0以上版本
TickLabelStr='Ticklabel';
else
error('unsupported matlab version. please send an email.');
end;
即可使用,至于里面还有可能存在的问题,只有在实践过程中发现了。
该程序和《基于MATLAB的系统分析与设计-时频分析》一书是对应的。
tfdemo可进行测试。
希望你使用愉快!
by swfile@163.com
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -