필터 지우기
필터 지우기

DSP

조회 수: 2 (최근 30일)
Dr G Jaffino
Dr G Jaffino 2011년 9월 21일
How to write matlab code for 1D wavelet transform with db4...

답변 (1개)

Wayne King
Wayne King 2011년 9월 21일
Hi see
wavedec() in the Wavelet Toolbox. You need to be careful about what you call the db4 wavelet. If that is the number of taps, then that is the 'db2' wavelet in the Wavelet Toolbox.
An example of the DWT down to level 4 using the 'db2' wavelet.
x = randn(1024,1);
C,L] = wavedec(x,4,'db2');

카테고리

Help CenterFile Exchange에서 DSP System Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by