Scilab Wavelet Toolbox Function
Last update : Feburary 2006

detcoef - detail coefficient extraction for one dimensional multiple stride fast discrete wavelet decompostion

Calling Sequence

dc=detcoef(c,l,level)

Parameters

Description

This function extracts detail coefficent from coefficent bunch vector. Since all the detail coefficients are stored in the coefficient bunch vector, no inverse transform efforts are needed. Hence, the wavelet name and extension method need not to be presented.

Examples


-->sig=rand(1,64);
-->[c,l]=wavedec(sig,3,'db2','symh');
-->d1=appcoef(c,l,1);
  length(d1)
 ans  =
 
    33.   
-->d2=appcoef(c,l,2);     
-->length(d2)
 ans  =
 
    18.  

  

See Also

appcoef ,   wrcoef ,   appcoef2 ,   detcoef2 ,   wrcoef2