CubicRealPolynomialDiscriminant Method (Double, Double, Double, Double) |
Provides the discriminant of the cubic equation from the supplied 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 static double Discriminant(
double a,
double b,
double c,
double d
)
Public Shared Function Discriminant (
a As Double,
b As Double,
c As Double,
d As Double
) As Double
public:
static double Discriminant(
double a,
double b,
double c,
double d
)
static member Discriminant :
a : float *
b : float *
c : float *
d : float -> float
Parameters
- a
- Type: SystemDouble
The coefficient of the 3rd order monomial. - b
- Type: SystemDouble
The coefficient of the 2nd order monomial. - c
- Type: SystemDouble
The coefficient of the 1st order monomial. - d
- Type: SystemDouble
The coefficient of the 0th order monomial.
Return Value
Type:
DoubleThe value of the discriminant.
See Also