RealPolynomial.Evaluate 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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:System.Double[]
The independent variable values.
Return Value
Type:
Double[]The evaluated values of the polynomial.
See Also