find_peaks
find_peaks(signals, distance=None, height=None)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
signals |
ndarray[N, M]
|
CS signals. |
required |
distance |
float
|
Minimal distance between peaks of the signals. Defaults to None. |
None
|
height |
float
|
Minimal peak amplitude as a fraction of the highest peak. Value must be between [0, 1]. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
list |
list
|
List of peaks for each signal in signals. |