Hello,
I am facing a problem in pywt.cwt function which calculate the continuous wavelet transform of a signal and as mentioned in the description of the function the second axis of the output, which represents the translation (in time) is the same as the input data, but sometimes when applying CWT we need to apply some strides to obtain fewer samples on the second axis.
For example:
We have a signal data with 10000 sample, if we apply pywt.cwt with 40 scales we obtain (40, 10000) output, but I don't need all the 10000, I need to apply a stride of 16 for example, so the output becomes (40,10000/16) = (40,625).
If any one worked on this before and could help me, it would be appreciated.
Thank you in advance!