 | DoubleParameterizedFunctionEvaluate Method (DoubleVector, Double) |
Evaluates the parameterized function for the given parameter values at the
given point.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic abstract double Evaluate(
DoubleVector parameters,
double x
)
Public MustOverride Function Evaluate (
parameters As DoubleVector,
x As Double
) As Double
public:
virtual double Evaluate(
DoubleVector^ parameters,
double x
) abstract
abstract Evaluate :
parameters : DoubleVector *
x : float -> float
Parameters
- parameters
- Type: CenterSpace.NMath.CoreDoubleVector
The parameter values. - x
- Type: SystemDouble
The point to evaluate the function at.
Return Value
Type:
DoubleThe function value for the given parameter values at the
the given point.
See Also