File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11"""
22Numerical python functions written for compatibility with MATLAB
3- commands with the same names.
3+ commands with the same names. Most numerical python functions can be found in
4+ the `numpy` and `scipy` libraries. What remains here is code for performing
5+ spectral computations.
46
5- MATLAB compatible functions
6- ---------------------------
7+ Spectral functions
8+ -------------------
79
810:func:`cohere`
911 Coherence (normalized cross spectral density)
2022:func:`specgram`
2123 Spectrogram (spectrum over segments of time)
2224
23- Miscellaneous functions
24- -----------------------
25-
26- Functions that don't exist in MATLAB, but are useful anyway:
27-
2825:func:`complex_spectrum`
2926 Return the complex-valued frequency spectrum of a signal
3027
5653 Apply a window along a given axis
5754"""
5855
59- import copy
6056import csv
61- import operator
62- import os
6357import warnings
6458
6559import numpy as np
6660
6761import matplotlib .cbook as cbook
6862from matplotlib import docstring
69- from matplotlib .path import Path
7063import math
7164
7265
You can’t perform that action at this time.
0 commit comments