I'm trying out PyWavelets and following this example.
import pywt
x = [3, 7, 1, 1, -2, 5, 4, 6]
cA, cD = pywt.dwt(x, 'db2')
Just to confirm, is cA the scaling and cD the time delay? Any way to change shift/scale step (a and b parameters from wikipedia)?