RealPolynomialEvaluate Method (Double) |
Evaluates the polynomial at the specified values of the independent variable.
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public double[] Evaluate(
params double[] x
)
Public Function Evaluate (
ParamArray x As Double()
) As Double()
public:
array<double>^ Evaluate(
... array<double>^ x
)
member Evaluate :
x : float[] -> float[]
Parameters
- x
- Type: SystemDouble
The independent variable values.
Return Value
Type:
DoubleThe evaluated values of the polynomial.
See Also