PiecewiseCurve.SetXValue Method

Sets 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 void SetXValue(
	int index,
	double newValue
)

Parameters

index  Int32
A zero-based index.
newValue  Double
A real number.

Remarks

This method lets you set the X-value of the data point with index index. The new X-value must be such that the X values remain in ascending order. Otherwise, an ArgumentException is thrown.

Exceptions

ArgumentOutOfRangeException

index is less than zero or greater than NumberOfIntervals.

ArgumentException

Setting the value to would cause the X values to no longer be in ascending order.

See Also