RealValuedScalarFunctionAdapterTEvaluate Method (T, Int32) |
Evaluates the function.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public override Motion<double> Evaluate(
T x,
int order
)
Public Overrides Function Evaluate (
x As T,
order As Integer
) As Motion(Of Double)
public:
virtual Motion<double> Evaluate(
T x,
int order
) override
abstract Evaluate :
x : 'T *
order : int -> Motion<float>
override Evaluate :
x : 'T *
order : int -> Motion<float>
Parameters
- x
- Type: T
The independent variable at which to evaluate. - order
- Type: SystemInt32
Ignored; this class does not evaluate derivatives.
Return Value
Type:
MotionDoubleThe value of the function.
See Also