Function: iwpfbt
IWPFBT   Inverse Wavelet Packet Filterbank Tree
  Usage:  f=iwpfbt(c,info);
          f=iwpfbt(c,wt,Ls);

  Input parameters:
        c       : Coefficients stored in a cell-array.
        info,wt : Transform parameters struct/Wavelet Filterbank tree.
        Ls      : Length of the reconstructed signal.

  Output parameters:
        f     : Reconstructed data.

  f = IWPFBT(c,info) reconstructs signal f from the coefficients c*
  using parameters from info struct. both returned by WFBT function.

  f = IWPFBT(c,wt,Ls) reconstructs signal f from the coefficients c*
  using filter bank tree defined by wt. Plese see WFBT function for
  possible formats of wt. The Ls parameter is mandatory due to the
  ambiguity of reconstruction lengths introduced by the subsampling
  operation and by boundary treatment methods.

  Please see help for WFBT description of possible formats of wt and
  of the additional flags.

  Scaling of intermediate outputs:
  --------------------------------

  The following flags control scaling of the intermediate coefficients.
  The intermediate coefficients are outputs of nodes which ale also
  inputs to nodes further in the tree.

     'intsqrt'
              Each intermediate output is scaled by 1/sqrt(2).
              If the filterbank in each node is orthonormal, the overall
              undecimated transform is a tight frame.
              This is the default.

     'intnoscale'
              No scaling of intermediate results is used.

     'intscale'
              Each intermediate output is scaled by 1/2.

  If 'intnoscale' is used, 'intscale' must have been used in WPFBT
  (and vice versa) in order to obtain a perfect reconstruction.

  Examples:
  ---------

  A simple example showing perfect reconstruction using the "full
  decomposition" wavelet tree:

    f = gspi;
    J = 7;
    wt = {'db10',J,'full'};
    c = wpfbt(f,wt);
    fhat = iwpfbt(c,wt,length(f));
    % The following should give (almost) zero
    norm(f-fhat)


Url: http://ltfat.github.io/doc/wavelets/iwpfbt.html

See also: wpfbt, wfbtinit.

Package: ltfat