马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
同步挤压小波变换(synchrosqueezed wavelet transform)是由小波变换创始人I. D.于2011年提出的一种新的时频分析方法,小弟刚接触不久,对论文(Synchrosqueezed wavelet transforms_An empirical mode decomposition-like tool)中的仿真自己动手试了一下,结果和论文有所出入,还请各位大神指教!谢谢!!!- t = linspace(0, 12, 1024);
- x = cos(t.^2+t+cos(t))+cos(8*t);
- figure
- plot(t,x)
- xlabel('Time(s)'),ylabel('Amplitude')
- nv = 32;
- [Tx, fs, Wx, as, w] = synsq_cwt_fw(t, x, nv);
- figure
- tplot(Tx, t, fs);
- figure
- imagesc(t, fs, abs(Tx));
- axis xy
复制代码
|