Click or drag to resize

SNIP_BaseGetStatisticsOfInterPointDistance Method

Gets the statistics of the absolute distance between two subsequent points in the provided array.

Namespace: Altaxo.Science.Spectroscopy.BaselineEstimation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static QuickStatistics GetStatisticsOfInterPointDistance(
	ReadOnlySpan<double> x
)

Parameters

x  ReadOnlySpanDouble
The x array.

Return Value

QuickStatistics
The 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