Main Content

wpdec

Wavelet packet decomposition 1-D

    Description

    tobj = wpdec(x,n,wname) returns a wavelet packet tree object tobj corresponding to the wavelet packet decomposition of the vector x at level n, using Shannon entropy and the wavelet specified by wname (see wfilters for more information).

    tobj = wpdec(x,n,wname,etype,p) uses the entropy type specified by etype. p is an optional parameter depending on the value of etype.

    Note

    tobj = wpdec(x,n,wname) is equivalent to tobj = wpdec(x,n,wname,"shannon").

    example

    Examples

    collapse all

    Load a signal.

    load noisdopp

    Decompose the signal at level 3 with db1 wavelet packets using Shannon entropy.

    wpt = wpdec(noisdopp,3,"db1","shannon");

    Plot the wavelet packet tree.

    plot(wpt)

    Figure contains 2 axes objects and other objects of type uimenu. Axes object 1 with title Tree Decomposition contains 29 objects of type line, text. Axes object 2 with title data for node: 0 or (0,0). contains an object of type line.

    Input Arguments

    collapse all

    Input data, specified as a real-valued numeric vector.

    Data Types: double

    Decomposition level, specified as a positive integer.

    Data Types: double

    Wavelet used in the wavelet packet decomposition, specified as a character vector or string scalar. The wavelet is from one of the following wavelet families: Best-localized Daubechies, Beylkin, Coiflets, Daubechies, Fejér-Korovkin, Haar, Han linear-phase moments, Morris minimum-bandwidth, Symlets, Vaidyanathan, Discrete Meyer, Biorthogonal, and Reverse Biorthogonal. See wfilters for the wavelets available in each family.

    Entropy type, specified as one of the following:

    Entropy Type (T)

    Threshold Parameter (p)

    Comments

    "shannon" 

    p is not used.

    "log energy" 

    p is not used.

    "threshold"0 ≤ p

    p is the threshold.

    "sure"0 ≤ p

    p is the threshold.

    "norm"1 ≤ p

    p is the power.

    "user"String

    p contains the file name of your own entropy function, with a single input x.

    "FunName"No constraints on p

    FunName is any string other than the previous entropy types listed.

    FunName contains the file name of your own entropy function, with x as input and p as an additional parameter to your entropy function.

    etype and the threshold parameter p together define the entropy criterion. For more information, see Entropy.

    Note

    The "user" option is historical and kept for compatibility, but it is obsoleted by the last option described in the table above. The FunName option does the same as the "user" option and in addition gives the possibility to pass a parameter to your own entropy function.

    Threshold parameter, specified by a real number or a string. p and the entropy type etype together define the entropy criterion.

    More About

    collapse all

    Tips

    • To obtain the wavelet packet transform of a 1-D multisignal, use dwpt.

    Algorithms

    The algorithm used for the wavelet packets decomposition follows the same line as the wavelet decomposition process (see dwt and wavedec for more information).

    References

    [1] Coifman, R.R., and M.V. Wickerhauser. “Entropy-Based Algorithms for Best Basis Selection.” IEEE Transactions on Information Theory 38, no. 2 (March 1992): 713–18. https://doi.org/10.1109/18.119732.

    [2] Meyer, Yves. Les ondelettes. Algorithmes et applications, Colin Ed., Paris, 2nd edition, 1994. (English translation: Wavelets: Algorithms and Applications, SIAM).

    [3] Wickerhauser, M.V. "INRIA lectures on wavelet packet algorithms." Proceedings ondelettes et paquets d'ondes, 17–21 June 1991, Rocquencourt, France, pp. 31–99.

    [4] Wickerhauser, Mladen Victor. Adapted Wavelet Analysis from Theory to Software. Wellesley, MA: A.K. Peters, 1994.

    Version History

    Introduced before R2006a