Main Content

wavenames

(To be removed) Wavelet names for LWT

    XXX wavenames will be removed in a future release. Use liftingScheme. For more information, see Compatibility Considerations.

    Description

    example

    w = wavenames(t) returns a cell array that contains the names of all wavelets of type t that the liftwave function supports.

    Examples

    collapse all

    Use wavenames to obtain the names of the orthogonal wavelets that liftwave supports.

    w = wavenames("orth")
    w =
    
      23×1 cell array
    
        {'haar' }
        {'db1'  }
        {'db2'  }
        {'db3'  }
        {'db4'  }
        {'db5'  }
        {'db6'  }
        {'db7'  }
        {'db8'  }
        {'db9'  }
        {'db10' }
        {'sym2' }
        {'sym3' }
        {'sym4' }
        {'sym5' }
        {'sym6' }
        {'sym7' }
        {'sym8' }
        {'coif1'}
        {'coif2'}
        {'coif3'}
        {'coif4'}
        {'coif5'}
    

    Input Arguments

    collapse all

    Wavelet type, specified as one of these:

    • "all" — All wavelets

    • "lazy" —"Lazy" wavelet

    • "orth" — Orthogonal wavelets

    • "bior" — Biorthogonal wavelets

    Version History

    Introduced before R2006a

    expand all