 | TabulatedFunctionSetTabulatedValues Method (Range, DoubleVector, DoubleVector) |
Sets the the tabulated point values in the specifed range to the
specified values.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic void SetTabulatedValues(
Range r,
DoubleVector x,
DoubleVector y
)
Public Sub SetTabulatedValues (
r As Range,
x As DoubleVector,
y As DoubleVector
)
public:
void SetTabulatedValues(
Range^ r,
DoubleVector^ x,
DoubleVector^ y
)
member SetTabulatedValues :
r : Range *
x : DoubleVector *
y : DoubleVector -> unit
Parameters
- r
- Type: CenterSpace.NMath.CoreRange
A range of indices. - x
- Type: CenterSpace.NMath.CoreDoubleVector
Independent tabulated values. - y
- Type: CenterSpace.NMath.CoreDoubleVector
Dependent tabulated values.
ExceptionsException | Condition |
---|
InvalidArgumentException | Thrown if this operation would
cause the sequence of tabulated independent values to be non-increasing. |
See Also