94117239 发表于 2007-10-20 13:03

毕业要用到的小波函数图像征集源程序

我只有这么几个,大家最好帖源程序



%绘制各个小波的图像
%Mexihat小波
figure(1);
lb=-5;ub=5;n=1000;
=mexihat(lb,ub,n);
plot(x,psi);
title('Mexihat小波');
%Morlet小波
figure(2);
lb=-4;ub=4;n=1000;
=morlet(lb,ub,n);
plot(x,psi);
title('Morlet小波');
%Meyer小波
figure(3);
lb=-4;ub=4;n=1024;
=meyer(lb,ub,n);
plot(x,psi);
title('Meyer小波');
页: [1]
查看完整版本: 毕业要用到的小波函数图像征集源程序