QuadraticRealPolynomial Constructor |
Constructs a quadratic polynomial with the provided real coefficients.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public QuadraticRealPolynomial(
double a,
double b,
double c
)
Public Sub New (
a As Double,
b As Double,
c As Double
)
public:
QuadraticRealPolynomial(
double a,
double b,
double c
)
new :
a : float *
b : float *
c : float -> QuadraticRealPolynomial
Parameters
- a
- Type: SystemDouble
The coefficient of the 2nd order monomial. - b
- Type: SystemDouble
The coefficient of the 1st order monomial. - c
- Type: SystemDouble
The coefficient of the 0th order monomial.
See Also