|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.numericalmethod.suanshu.analysis.function.polynomial.root.QuarticByFormula
public class QuarticByFormula
This solves the quartic equations by a root-finding formula.
Solve
ax4 + bx3 + cx2 + dx + e = 0using 4 direct equations for 4 roots.
| Constructor Summary | |
|---|---|
QuarticByFormula()
|
|
| Method Summary | |
|---|---|
NumberList |
solve(double a,
double b,
double c,
double d,
double e)
Solve ax4 + bx3 + cx2 + dx + e = 0 |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public QuarticByFormula()
| Method Detail |
|---|
public NumberList solve(double a,
double b,
double c,
double d,
double e)
Quartic.QuarticSolverax4 + bx3 + cx2 + dx + e = 0
solve in interface Quartic.QuarticSolvera - ab - bc - cd - de - e
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||