File tree 1 file changed +5
-12
lines changed 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
2
Numerical 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.
4
6
5
- MATLAB compatible functions
6
- ---------------------------
7
+ Spectral functions
8
+ -------------------
7
9
8
10
:func:`cohere`
9
11
Coherence (normalized cross spectral density)
20
22
:func:`specgram`
21
23
Spectrogram (spectrum over segments of time)
22
24
23
- Miscellaneous functions
24
- -----------------------
25
-
26
- Functions that don't exist in MATLAB, but are useful anyway:
27
-
28
25
:func:`complex_spectrum`
29
26
Return the complex-valued frequency spectrum of a signal
30
27
56
53
Apply a window along a given axis
57
54
"""
58
55
59
- import copy
60
56
import csv
61
- import operator
62
- import os
63
57
import warnings
64
58
65
59
import numpy as np
66
60
67
61
import matplotlib .cbook as cbook
68
62
from matplotlib import docstring
69
- from matplotlib .path import Path
70
63
import math
71
64
72
65
You can’t perform that action at this time.
0 commit comments