期待楼主最新的成果。 Newland D E. Harmonic wavelets in vibrations andacoustics 和 Newland D E. Wavelet analysis of vibration - part 1:theory 、Newland D E.Harmonic wavelet analysis这三篇文章哪位兄弟姐妹有啊,借我看看,本人不胜感激、本人邮箱:jinyan5407101@sina.com 先看看!!! 楼主牛人啊,谢谢分享, 谢谢楼主分享啊!! 学习了,谢谢! fs1=dt*fft(s)./(2*pi);
dt/2*pi为什么要有???????? 谢谢分享。不知楼主还在否?程序里面的Wd是什么意思啊?重构之后为啥分为实部和虚部? 怎么看分了多少层啊?求指教,懂得请指教`~ fs1=dt*fft(s)./(2*pi);是什么意思呀
clc
clear all
fs=4096;
dt=1/fs;
N=2048;
f=fs*(0:N-1)./N;
t=0:dt:2047*dt;
Wd=hann(2048);
y1=3*sin(2*pi*50*t)+2*sin(2*pi*100*t);
y2=0.05*sin(2*pi*150*t);
s=y1+y2;
subplot(411)
plot(t,y2);
fs1=dt*fft(s)./(2*pi);
%j=7,s=127
figure(1)
subplot(412);
plot(f-fs/2,abs())
m=148;
n=152;
fsai=(exp(2*n*pi*t*i)-exp(2*pi*m*t*i))./(2*pi*(n-m)*t*i+1e-100).*Wd';
f1=dt*fft(fsai)./(2*pi);
subplot(413)
f=fs*(0:N-1)./N;
plot(f-fs/2,abs());
N=length(s);
W=f1.*fs1;
subplot(414)
plot(f-fs/2,abs());
w1=4*pi*2*pi*ifft(W)./dt;
figure(2)
subplot(211)
plot(t,real(w1))
subplot(212)
plot(t,imag(w1))
为什么研究理论的比较多 而对于实际信号处理的反而比较少呢 借鉴借鉴 谢谢楼主啊
页:
1
[2]