-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**FEATURES**: - `stft`, `istft`, `ssq_stft`, and `issq_stft` implemented and validated - Added to `utils.py`: `buffer`, `unbuffer`, `window_norm`, `window_resolution`, and `window_area` - Replaced `numba.njit` with `numba.jit(nopython=True, cache=True)`, accelerating recomputing **BREAKING**: - `cwt()` no longer returns `x_mean` - `padsignal` now only returns padded input by default; `get_params=True` for old behavior - Moved methods: `phase_cwt` & `phase_cwt_num` from `ssqueezing` to `_ssq_cwt` - _In future release_: return order of `cwt` and `stft` will be changed to have `Wx, dWx` and `Sx, dSx`, and `ssq_cwt` and `ssq_stft` to have `Tx, Wx` and `Tx, Sx` **MISC**: - `wavelet` positional argument in `cwt` is now a keyword argument that defaults to `'morlet'` - Support for `padsignal(padtype='wrap')` - Docstring, comment cleanups
- Loading branch information
1 parent
985d7a7
commit ac2fd4b
Showing
16 changed files
with
1,186 additions
and
347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
### 0.5.5 (1-14-2021): STFT & Synchrosqueezed STFT | ||
|
||
#### FEATURES | ||
- `stft`, `istft`, `ssq_stft`, and `issq_stft` implemented and validated | ||
- Added to `utils.py`: `buffer`, `unbuffer`, `window_norm`, `window_resolution`, and `window_area` | ||
- Replaced `numba.njit` with `numba.jit(nopython=True, cache=True)`, accelerating recomputing | ||
|
||
#### BREAKING | ||
- `cwt()` no longer returns `x_mean` | ||
- `padsignal` now only returns padded input by default; `get_params=True` for old behavior | ||
- Moved methods: `phase_cwt` & `phase_cwt_num` from `ssqueezing` to `_ssq_cwt` | ||
- _In future release_: return order of `cwt` and `stft` will be changed to have `Wx, dWx` and `Sx, dSx`, and `ssq_cwt` and `ssq_stft` to have `Tx, Wx` and `Tx, Sx` | ||
|
||
#### MISC | ||
- `wavelet` positional argument in `cwt` is now a keyword argument that defaults to `'morlet'` | ||
- Support for `padsignal(padtype='wrap')` | ||
- Docstring, comment cleanups |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.