QuarticRealPolynomial Constructor |
Constructs a quartic 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 QuarticRealPolynomial(
double a,
double b,
double c,
double d,
double e
)
Public Sub New (
a As Double,
b As Double,
c As Double,
d As Double,
e As Double
)
public:
QuarticRealPolynomial(
double a,
double b,
double c,
double d,
double e
)
new :
a : float *
b : float *
c : float *
d : float *
e : float -> QuarticRealPolynomial
Parameters
- a
- Type: SystemDouble
The coefficient of the 4th order monomial. - b
- Type: SystemDouble
The coefficient of the 3rd order monomial. - c
- Type: SystemDouble
The coefficient of the 2nd order monomial. - d
- Type: SystemDouble
The coefficient of the 1st order monomial. - e
- Type: SystemDouble
The coefficient of the 0th order monomial.
See Also