PiecewiseCurve.SetDataPoints Method

Sets the data points at the specified indexes.

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public void SetDataPoints(
	int[] indexes,
	Point[] newValues
)

Parameters

indexes  Int32[]
An integer array of zero-based indexes.
newValues  Point[]
An array of Point structures.

Exceptions

ArgumentOutOfRangeExceptionOne or more of the indexes is less than zero or greater than NumberOfIntervals.
-or-
Setting the x values would cause the x values to no longer be in ascending order.

See Also