Sets the data points at the specified indexes.

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Sub SetDataPoints ( _
	indexes As Integer(), _
	newValues As Point() _
)
C#
public void SetDataPoints (
	int[] indexes,
	Point[] newValues
)
C++
public:
void SetDataPoints (
	array<int>^ indexes, 
	array<Point>^ newValues
)

Parameters

indexes ()
An integer array of zero-based indexes.
newValues ()
An array of Point structures.

Exceptions

ExceptionCondition
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