STFT & Synchrosqueezed STFT
OverLordGoldDragon
released this
14 Jan 04:23
·
49 commits
to master
since this release
FEATURES:
stft
,istft
,ssq_stft
, andissq_stft
implemented and validated- Added to
utils.py
:buffer
,unbuffer
,window_norm
,window_resolution
, andwindow_area
- Replaced
numba.njit
withnumba.jit(nopython=True, cache=True)
, accelerating recomputing
BREAKING:
cwt()
no longer returnsx_mean
padsignal
now only returns padded input by default;get_params=True
for old behavior- Moved methods:
phase_cwt
&phase_cwt_num
fromssqueezing
to_ssq_cwt
- In future release: return order of
cwt
andstft
will be changed to haveWx, dWx
andSx, dSx
, andssq_cwt
andssq_stft
to haveTx, Wx
andTx, Sx
MISC:
wavelet
positional argument incwt
is now a keyword argument that defaults to'morlet'
- Support for
padsignal(padtype='wrap')
- Added
CHANGELOG.md
- Docstring, comment cleanups