昨天添加的信号高阶谱分析工具箱,使用的时候发现如下问题:
使用指令:subplot(2,2,3);[bspec,waxis]=bispeci(signal4,16);title('双谱估计平面图');
下面给出提示:
Warning: Could not find an exact (case-sensitive) match for 'bispeci'.
D:\Program Files\MATLAB\R2007b\toolbox\hosa\BISPECI.M is a case-insensitive match and will be used instead.
You can improve the performance of your code by using exact
name matches and we therefore recommend that you update your
usage accordingly. Alternatively, you can disable this warning using
warning('off','MATLAB:dispatcher:InexactMatch').
但是我使用指令查看该函数是存在的
>> which bispeci
D:\Program Files\MATLAB\R2007b\toolbox\hosa\BISPECI.M
请教各位高手上面的错误提示什么意思呢?