Scilab Wavelet Toolbox Function
Last update : June 2007

appcoef2 - Two Dimension Approximation Coefficent Reconstruction

Calling Sequence

A=appcoef(c,s,wname,[N])
A=appcoef(c,s,Lo_R,Hi_R,[N])

Parameters

Description

appcoef2 is for extraction or reconstruction of approximation coeffient at different level after a multiple level decompostion. Extension mode is stored as a global variable and could be changed with dwtmode. If N is omitted, maximum level approximation will be obtained.

Examples

  x=rand(100,100);
  [C,S]=wavedec(x,3,'db2');
  A2=appcoef(C,S,'db2',2);
 

Author

Roger Liu and Isaac Zhi

See Also

wavedec2 ,   waverec2 ,   detcoef2 ,