I need a matlab code for doing(1d) wavelet decomposition(DWT) in single observation with time

for example: if i done DWT with observation values with time what type results i can get..?? can any one guide me... please....

 Accepted Answer

After 1D wavelet decomposition you will obtain a approximate low frequency and a detail high frequency components of your observation signal in time.
Example code from Matlab Help load noisdopp; [A,D] = dwt(noisdopp,'sym4');
A is your (Approximate) low frequency signal D is your (Detail) high frequency signal sym4 is the mother wavelet (namely symlet 4) used to decompose the signal. It determine how well it decompose the signal. So you need to know the observation signal and application well for you to choose the right mother wavelet. You will notice the resultant decompose time samples are half of the original time sample.

3 Comments

OK thank you for response sir. still, i have confusion with DWT method. can you solve the with my data (monthly rainfall data with 55 years time period) first time using this method in MATLAB software(actually i am civil engg student) i need to calculate: 1) what type of answers i got after calculation (if i solve) 2) plot for each level 1, level 2, level 3, and etc..... 3) plot explanation
please tell me sir thank you sir
i am waiting for your response.........

Sign in to comment.

More Answers (0)

Categories

Find more on Wavelet Toolbox in Help Center and File Exchange

Asked:

on 19 Oct 2016

Commented:

on 23 Oct 2018

Community Treasure Hunt

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

Start Hunting!