aaren / wavelets

Python implementation of the wavelet analysis found in Torrence and Compo (1998)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

set the scales by setting the fourier periods

aaren opened this issue · comments

Allow this behaviour:

wt.fourier_periods = array_of_periods

The scales of a transform can currently be set by

wt = WaveletTransform(data)
wt.scales = array_of_scales

The equivalent fourier period is available as a property wt.fourier_periods,
however we can't set the scales via the fourier_periods. This would be useful
as the equivalent fourier period allows us to compare wavelets.