Difference in Wavelet decompostion coefficients

3 views (last 30 days)
Hi,
I have a signal of size 36X1 and I get different values of the approximate coefficients when I use the GUI in wavelet toolbox vs when I script it. For the script I have tried both the dwt and the wavedec function with wavetype as 'db4'. I have tried different levels of decomp too but the approximate coefficients at level 'x' that I export from the GUI is not the same as the one I get from the script? Any help would be appreciated.
Thanks
Romendra
I retrieved the approximate coefficients from the script using the appcoef() function

Accepted Answer

Wayne King
Wayne King on 26 Sep 2012
wrcoef() gives the orthogonal projection of the signal onto the vector subspace (approximation or wavelet) at the given level.
If you want to get the approximation coefficients from the GUI then you can do:
Export to Workspace -> Export Coefficients
Assume the variable in the workspace is my_VAR_1, then
appcoeff = my_VAR_1.coefs(1:my_VAR_1.longs(1));
are the approximation coefficients at the level of the GUI decomposition.
  2 Comments
Romendra
Romendra on 27 Sep 2012
Ok,
so I ran the wrcoef and it is the same as the one from the GUI for a decomp level 'x'. Is there a way that I can make the GUI spit out the coefficients after the decomp before the reconstruction.
Thanks for the help
Wayne King
Wayne King on 27 Sep 2012
Yes, Export to Workspace -> Export Coefficients. That exports the coefficients just as you get with
[C,L] = wavedec()

Sign in to comment.

More Answers (1)

Wayne King
Wayne King on 26 Sep 2012
Hi Romendra, The export approximations from the GUI is not the approximation coefficients, it is a projection onto a particular subspace. You can get this at the command line with wrcoef() with the 'a' type.
x = randn(36,1);
[C,L] = wavedec(x,2,'db4');
xapp2 = wrcoef('a',C,L,'db4',2);
  1 Comment
Romendra
Romendra on 26 Sep 2012
Would you mind clearing what you mean by projection into a particular subspace? wrcoef will reconstruct the signal and given the coefficient type 'a' in this case. I was just trying to figure out if there is a way to extract an approximate coefficient for a certain level of decomp for a signal. Thanks

Sign in to comment.

Categories

Find more on Discrete Multiresolution Analysis in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!