Borrar filtros
Borrar filtros

Difference in Wavelet decompostion coefficients

1 visualización (últimos 30 días)
Romendra
Romendra el 26 de Sept. de 2012
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

Respuesta aceptada

Wayne King
Wayne King el 26 de Sept. de 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 comentarios
Romendra
Romendra el 27 de Sept. de 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 el 27 de Sept. de 2012
Yes, Export to Workspace -> Export Coefficients. That exports the coefficients just as you get with
[C,L] = wavedec()

Iniciar sesión para comentar.

Más respuestas (1)

Wayne King
Wayne King el 26 de Sept. de 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 comentario
Romendra
Romendra el 26 de Sept. de 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

Iniciar sesión para comentar.

Categorías

Más información sobre Discrete Multiresolution Analysis en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by