https://github.com/scikit-signal/tftb
A Python module for time-frequency analysis
https://github.com/scikit-signal/tftb
matplotlib numpy python scipy signal-processing time-frequency-analysis
Last synced: 14 days ago
JSON representation
A Python module for time-frequency analysis
- Host: GitHub
- URL: https://github.com/scikit-signal/tftb
- Owner: scikit-signal
- Created: 2014-10-10T13:40:21.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2025-01-28T07:29:41.000Z (3 months ago)
- Last Synced: 2025-04-02T04:32:37.627Z (21 days ago)
- Topics: matplotlib, numpy, python, scipy, signal-processing, time-frequency-analysis
- Language: Python
- Homepage:
- Size: 1.01 MB
- Stars: 269
- Watchers: 17
- Forks: 57
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tftb
tftb (Time-frequency toolbox) is a Python module for time-frequency analysis and visualization
build with SciPy and matplotlib.The tftb project began as a Python implementation of the TFTB toolbox developed by
François Auger, Olivier Lemoine, Paulo Gonçalvès and Patrick Flandrin. While this project and the
MATLAB implementation (henceforth referred to as TFTB) are similar in the core algorithms and the
basic code organization, the very nature of the Python programming language has motivated a very
different approach in architecture of PyTFTB (differences between the two packages have been
discussed in detail [here](https://tftb.readthedocs.io/en/latest/introduction.html#comparison-of-tftb-and-pytftb)).## Installation
tftb requires:
- Python (>= 3.5)
- NumPy
- SciPy
- MatplotlibInstall tftb with pip as follows:
```bash
$ pip install tftb
```