SignalMathGetMinimalAndMaximalProperties Method |
Gets the minimal and maximal properties of an array of x-values.
Namespace: Altaxo.Science.SignalsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static (double minimalDistance, double maximalDistance, double minimalValue, double maximalValue) GetMinimalAndMaximalProperties(
ReadOnlySpan<double> array
)
Parameters
- array ReadOnlySpanDouble
- The array of x values.
Return Value
ValueTupleDouble,
Double,
Double,
Double
The (absolute value) of the minimal distance between two consecutive data points,
the (absolute value) of the maximal distance between two consecutive data points,
the minimal value of all elements, and
the maximal value of all elements.
See Also