Set the values of the tabulated point at the specified index to the specified value.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public void SetTabulatedValues(
	int i,
	double x,
	double y
)
Visual Basic (Declaration)
Public Sub SetTabulatedValues ( _
	i As Integer, _
	x As Double, _
	y As Double _
)
Visual C++
public:
void SetTabulatedValues(
	int i, 
	double x, 
	double y
)

Parameters

i
Type: System..::.Int32
Index.
x
Type: System..::.Double
Independent variable value.
y
Type: System..::.Double
Dependent variable value.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if this operation would cause the sequence of tabulated independent values to be non-increasing.

See Also