说明.txt

来自「2006年修订时频分析工具包,已经过严格测试,性能可靠!工具包中包括将近一百个子」· 文本 代码 · 共 40 行

TXT
40
字号
对于该程序包可在网上下载,不过自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 + =
减小字号Ctrl + -
显示快捷键?