PiecewiseCurve.GetXValue Method

Returns the X value of the data point with the specified index.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public double GetXValue(
	int index
)

Parameters

index  Int32
A zero-based index.

Return Value

Double
The X value at the specified index.

Remarks

This method returns the X-value of the data point with index index. If index is less than NumberOfIntervals, the data point returned corresponds to the lower bound of the indexth interval. If index equals NumberOfIntervals, the data point corresponds to the upper bound of the last interval.

Exceptions

ArgumentOutOfRangeException

index is less than zero or greater than NumberOfIntervals.

See Also