SNIP_BaseGetStatisticsOfInterPointDistance Method |
Gets the statistics of the absolute distance between two subsequent points in the provided array.
Namespace: Altaxo.Science.Spectroscopy.BaselineEstimationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static QuickStatistics GetStatisticsOfInterPointDistance(
ReadOnlySpan<double> x
)
Parameters
- x ReadOnlySpanDouble
- The x array.
Return Value
QuickStatisticsThe statistics (mean, average, min, max) of the distance (e.g. Math.Abs(x[i+1]-x[i])) of the points in the array.
See Also