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!