computing symlet wavelet
5 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone, I know that the symlet wavelet does not have an explicit function like morlet wavelet; but is there any way to know how can matlab compute this wavelet family at different orders
0 件のコメント
採用された回答
Wayne King
2012 年 1 月 13 日
Hi Claire, The MATLAB Wavelet Toolbox has the scaling filters for a number of the symlet (Daubechies' least-asymmetric) filters.
The are designated with the wavelet family shortname 'sym' and then further specified by the number of vanishing moments.
% with 4 vanishing moments
[Lo,Hi] = wfilters('sym4');
% visualize the scaling function and wavelet
[phi,psi,xval] = wavefun('sym4',10);
subplot(211)
plot(xval,phi); title('Scaling Function');
subplot(212)
plot(xval,psi); title('Wavelet');
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Continuous Wavelet Transforms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!