向大家求教:
我用superlu的一段程序:
N=1000;
fs=1000;
t=1/fs:1/fs:N/fs;
x=cos(2*pi*20*t)+2*cos(2*pi*60*t+0.5*sin(30*pi*t))+2.5*cos(2*pi*120*t);
[tfr,t,f]=tfrscalo(hilbert(x'));
imagesc(t/fs,(f(1:N)*fs),tfr(1:N,:));
set(gca,'YDir','normal');colorbar;title('小波时频图');
在自己的matlab里运行,为什么出现如下的错误啊?
Undefined function or method 'tfrscalo' for input arguments of type 'double'.
是不是我的函数库里没有'tfrscalo'这个函数?