登录论坛

查看完整版本 : [MATLAB数学相关] 求高手指点


妖娆。
2012-09-16, 21:16
运行下面的程序,

% 设置有效支撑和网格参数
lb = -8; ub = 8; n = 1024;
% 计算并画出Meyer小波和尺度函数
[phi,psi,x] = meyer(lb,ub,n);
subplot(211), plot(x,psi)
title('Meyer 小波')
subplot(212), plot(x,phi)
title('Meyer 尺度函数')

就出现
??? Attempt to execute SCRIPT meyer as a function:

Error in ==> Untitled5 at 4
[phi,psi,x] = meyer(lb,ub,n);


求解??为什么仿不出来呢???