 | TabulatedFunctionSetTabulatedValues Method (Int32, Double, Double) |
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: 7.4
Syntaxpublic void SetTabulatedValues(
int i,
double x,
double y
)
Public Sub SetTabulatedValues (
i As Integer,
x As Double,
y As Double
)
public:
void SetTabulatedValues(
int i,
double x,
double y
)
member SetTabulatedValues :
i : int *
x : float *
y : float -> unit
Parameters
- i
- Type: SystemInt32
Index. - x
- Type: SystemDouble
Independent variable value. - y
- Type: SystemDouble
Dependent variable value.
ExceptionsException | Condition |
---|
InvalidArgumentException | Thrown if this operation would
cause the sequence of tabulated independent values to be non-increasing. |
See Also