Greetings,

After searching the archives, I was unable to find a good method for
changing the stride of the correlate or convolve routines. I am doing a
Daubechies analysis of some sample data, say data = arange(0:80). The
coefficient array or four floats (say daub_g2[0:4]) is correlated over
the data. However, the product only needs to be calculated for every
other data index.

For example, I need to take the inner product of:
   data[0:4] with daub_g2[0:4]
then
   data[2:6] with daub_g2[0:4]
then
   data[4:8] with daub_g2[0:4]
and so on.

You help is greatly appreciated,

Chris


_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to