compute_derivative_savgol: Savitzky-Golay Derivative
Description
Computes derivatives using the Savitzky-Golay filter.
Usage
compute_derivative_savgol(Z, t = NULL, p = 3, n = NULL, m = 1, ...)
Value
List with derivative vector.
Arguments
- Z
Numeric vector of observations.
- t
Numeric vector of time points.
- p
Polynomial order (default 3).
- n
Filter length (must be odd, default auto-selected).
- m
Derivative order (default 1).
- ...
Additional arguments (ignored).