SavitzkyGolayApply(IReadOnlyListDouble, IVectorDouble) Method |
Applies the configured filter to an array of numbers.
The left and right sides are treated specially by applying Savitzky-Golay filters with appropriately adjusted
left and right numbers of points.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic void Apply(
IReadOnlyList<double> array,
IVector<double> result
)
Parameters
- array IReadOnlyListDouble
- The array of numbers to filter.
- result IVectorDouble
- The resulting array. Must not be identical to array.
Exceptions| Exception | Condition |
|---|
| ArgumentException |
Thrown if array and result are identical, or if the input array is shorter than
the filter length.
|
See Also