Wavelet Toolbox
  Go to function:
    Search    Help Desk 
dyaddown    Examples   See Also

Dyadic downsampling.

Syntax

Description

Y = dyaddown(X,evenodd), where X is a vector, returns a version of X that has been downsampled by 2. Whether Y contains the even- or odd-indexed samples of X depends on the value of positive integer evenodd:

If you omit the evenodd argument, dyaddown(X) defaults to evenodd = 0 (even-indexed samples).

Y = dyaddown(X,evenodd,'type') or Y = dyaddown(X,'type',evenodd), where X is a matrix, return a version of X obtained by suppressing:

Columns of X
If 'type' = 'c'
Rows of X
If 'type' = 'r'
Rows and columns of X)
If 'type' = 'm'

If you omit the evenodd or 'type' arguments, dyaddown defaults to
evenodd = 0 (even-indexed samples) and 'type' = 'c' (columns).

Examples

See Also

dyadup

References

G. Strang, T. Nguyen (1996), Wavelets and Filter Banks, Wellesley-Cambridge Press.



[ Previous | Help Desk | Next ]