Tell me more ×
Signal Processing Stack Exchange is a question and answer site for practitioners of the art and science of signal, image and video processing. It's 100% free, no registration required.

I want to use waverec to evaluate a linear combination of the scaled and shifted wavelet of the form

$$ \sum_{i=1}^n\sum_{j=0}^{2^n-1}d_{nj} 2^{-n}\psi_{ij} (\frac{t-j}{2^n}) +c_{00}\phi(t) $$ at $t=k2^{-n} $ for $k=0\dots2^{n}-1$. I know how do it for the Haar wavelet, namely

[c,l]=wavedec(zeros(1,8),3,'haar')
waverec(2^(3/2)*[c00 d10 d20 d21 d30 d31 d32 d33],l,'haar')

But how can you do the same thing for Daubechies wavelets? The problem being that the array c does not have 8 entries but 28:

[c,l]=wavedec(zeros(1,8),3,'db4')

c =

  Columns 1 through 14

     0     0     0     0     0     0     0     0     0     0     0     0     0     0


  Columns 15 through 28

     0     0     0     0     0     0     0     0     0     0     0     0     0     0


l =

     7     7     7     7     8

The Question is related to Number of Daubechies coefficients, but I do not understand the answer.

share|improve this question
Where is the $i$ in the equation after the sigmas? – Mohammad Nov 27 '12 at 0:52
Sorry, just edited the post. In the index of the basis function. Thank you – warsaga Nov 28 '12 at 11:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.