i need a example code for Single-level discrete 2-D wavelet transform
조회 수: 1 (최근 30일)
이전 댓글 표시
since i am newbie to matlab i dont know how to start this project. obviously my project need feature extraction method which has involved in discrete wavelet transforms please help me answer this code
댓글 수: 0
답변 (1개)
Peng Li
2020년 3월 29일
Say x is your signal and you’d like to do an n-level decomposition, using
[C, L] = wavedec(x, n, ‘db2’);
db2 is the wavelet you choose to decompose this signal x.
Better to check ref page. There are a lot more examples.
https://www.mathworks.com/help/wavelet/ref/wavedec.html
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!