What do wavelet transform coefficients of zero mean?
조회 수: 5 (최근 30일)
이전 댓글 표시
I am new to wavelet transforms. I have a signal of length 128. I passed it to the Matlab wavelet function 'dwt' using a haar filter. I am looking at the result of the wavelet coefficients.
What do zero coefficients mean?
댓글 수: 0
채택된 답변
Wayne King
2013년 3월 10일
That depends on the level you are looking at. If you are looking at level 1, then zero coefficients with the Haar wavelet mean that adjacent values in the vector are identical.
For example:
x = [1 2 3 3 4 6 5 5];
dwtmode('per');
[A,D] = dwt(x,'haar');
The second element of D is proportional to the difference of x(3) and x(4), the last element of D is proportional to the difference of x(7) and x(8)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Discrete Multiresolution Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!