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 static double[] SolveQuartic( 
   double c4
   double c3
   double c2
   double c1
   double c0
   double tol = Calc.Epsilon 
)

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