 | OneVariableFunctionEvaluate Method (DoubleVector) |
Evaluates the current function at the given set of x-values.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleVector Evaluate(
DoubleVector x
)
Public Function Evaluate (
x As DoubleVector
) As DoubleVector
public:
DoubleVector^ Evaluate(
DoubleVector^ x
)
member Evaluate :
x : DoubleVector -> DoubleVector
Parameters
- x
- Type: CenterSpace.NMath.CoreDoubleVector
The positions on the x-axis at which to evaluate
f(x).
Return Value
Type:
DoubleVectorA vector
y such that
y[i] = f(x[i]).
See Also