Discret Wavelet Transform got Daub2

版本 1.0.0.0 (2.4 KB) 作者: Santhana Raj
Implements the Daubechies 2 DWT w/o using the inbuilt function
2.0K 次下载
更新时间 2012/6/25

查看许可证

y=d2wavelet(x,Fs,level) does the 2nd order Daubechies Wavelet Transform of signal x with a sampling frequency 'Fs' and the DWT is decomposition is done upto a 'level'
It returns the matrix of all decompositions and the final approximations.

Instead of using the matlab's inbuilt DWT function, this file explains the algorithm for DWT. Mostly useful for learning & academic purposes.

For other wavelets, the filter values alone can be changed or WFILTERS can
be used.

The function basically is for Condition Monitoring of rotating equipments by vibration based bearing fault diagnosis by the author.

Example:
clear all;
t=[0:0.0003:8*pi];
x=sin(5000*t)+sin(1000*t);
x=x(1:2^16);
level=5;Fs=1/0.003;
d2wavelet(x,Fs,level);

Thanks for Downloading. Don't forget to rate or comment.

引用格式

Santhana Raj (2024). Discret Wavelet Transform got Daub2 (https://www.mathworks.com/matlabcentral/fileexchange/37305-discret-wavelet-transform-got-daub2), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2010a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Signal Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0