|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
我只有这么几个,大家最好帖源程序
%绘制各个小波的图像
%Mexihat小波
figure(1);
lb=-5;ub=5;n=1000;
[psi,x]=mexihat(lb,ub,n);
plot(x,psi);
title('Mexihat小波');
%Morlet小波
figure(2);
lb=-4;ub=4;n=1000;
[psi,x]=morlet(lb,ub,n);
plot(x,psi);
title('Morlet小波');
%Meyer小波
figure(3);
lb=-4;ub=4;n=1024;
[phi,psi,x]=meyer(lb,ub,n);
plot(x,psi);
title('Meyer小波'); |
|