Function or value | Description |
Full Usage:
optimizeWindowWidth polOrder windowWidthToTest blankSignal signalOfInterest
Parameters:
int
-
windowWidthToTest : int[]
-
blankSignal : float[]
-
signalOfInterest : float[]
-
Returns: int
|
Estimates the autocorrelation at lag 1 of a blank signal (containing only noise). Subsequently, the signal of interest is smoothed Method is based on: https://doi.org/10.1021/ac0600196
Example
|
Full Usage:
savitzkyGolay windowSize order deriv rate data
Parameters:
int
order : int
deriv : int
rate : int
data : float[]
Returns: float[]
|
Smooth (and optionally differentiate) data with a Savitzky-Golay filter.
|