Click or drag to resize

TabulatedFunctionSetTabulatedValues(DoubleVector, DoubleVector) Method

Changes the values of the tabulated function.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void SetTabulatedValues(
	DoubleVector x,
	DoubleVector y
)

Parameters

x  DoubleVector
A vector of x-values. The values must be in increasing order.
y  DoubleVector
A vector of y-values.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the values in the x vector are not strictly increasing, or if the vectors x and y do not have the same length, or if there are less than two values.
See Also