RealPolynomial.SolveQuartic Method

Returns an array with the real solutions of eqution ax^4+bx^3+cx^2+dx+e=0 This array can be 1 to 4 elements long. If no solutions found, null is returned.
Public Shared Function SolveQuartic( _ 
ByVal c4 As Double, _ 
ByVal c3 As Double, _ 
ByVal c2 As Double, _ 
ByVal c1 As Double, _ 
ByVal c0 As Double, _ 
Optional ByVal tol As Double = Calc.Epsilon _ 
) As Double()
This language is not supported or no code example is available.
public static double[] SolveQuartic( 
double c4
double c3
double c2
double c1
double c0
double tol = Calc.Epsilon 
)
This language is not supported or no code example is available.
public:  
static array< double >^ SolveQuartic( 
double c4
double c3
double c2
double c1
double c0
double tol 
)
This language is not supported or no code example is available.
public static function SolveQuartic( 
c4 : double
c3 : double
c2 : double
c1 : double
c0 : double
tol : double 
) : double[];
This language is not supported or no code example is available.

Parameters

c4
double

c3
double

c2
double

c1
double

c0
double

tol
double

Return Value

double[]

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition