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

Extract 1-D approximation coefficients.

Syntax

Description

appcoef is a one-dimensional wavelet analysis function.

appcoef computes the approximation coefficients of a one-dimensional signal.

A = appcoef(C,L,'wname',N) computes the approximation coefficients at level N using the wavelet decomposition structure [C,L] (see wavedec).

'wname' is a string containing the wavelet name. Level N must be an integer such that 0 <= N <= length(L)-2.

A = appcoef(C,L,'wname') extracts the approximation coefficients at the last level length(L)-2.

Instead of giving the wavelet name, you can give the filters. For
A = appcoef(C,L,Lo_R,Hi_R) or A = appcoef(C,L,Lo_R,Hi_R,N), Lo_R is the reconstruction low-pass filter and Hi_R is the reconstruction high-pass filter.

Examples

Algorithm

The input vectors C and L contain all the information about the signal decomposition.

Let NMAX = length(L)-2, then C = [A(NMAX) D(NMAX) ... D(1)], where A and the D are vectors.

If N = NMAX a simple extraction is done, otherwise appcoef computes iteratively the approximation coefficients using the inverse wavelet transform.

See Also

detcoef, wavedec

[ Previous | Help Desk | Next ]