필터 지우기
필터 지우기

wavelet

조회 수: 3 (최근 30일)
Dr G Jaffino
Dr G Jaffino 2011년 10월 27일
답변: maryam mosaffa 2018년 1월 14일
For octave wavelet coefficients feature extraction take all the 8 wavelet coefficients or take only for 8th coefficient?

채택된 답변

Wayne King
Wayne King 2011년 10월 27일
Hi Jaffino, the term "octave" as applied to the DWT is just referring to the dyadic scales. So you take all the coefficients at that scale. For example:
x = randn(1024,1);
[C,L] = wavedec(x,3,'db4');
d3 = detcoef(C,L,3);
d3 is the vector of coefficients at scale 3 (3rd octave). I think octave is a bit outdated now in the wavelet literature, better to refer to them as just scales.

추가 답변 (1개)

maryam mosaffa
maryam mosaffa 2018년 1월 14일
How can i know the best wavelet mother i chose for my case study.please introduce me the best way of choosing wavelet mother in CWT toolbox?

카테고리

Help CenterFile Exchange에서 Continuous Wavelet Transforms에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by