|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.geotools.math.Polynom
The coefficients of a polynomial equation. The equation must be in the form
y = c0 +
c1×x +
c2×x2 +
c3×x3 + ... +
cn×xn
.
The static method roots(double[])
can be used for computing the root of a polynomial
equation without creating a object.
Constructor Summary | |
Polynom(double[] c)
Construct a polynom with the specified coefficients. |
Method Summary | |
boolean |
equals(java.lang.Object object)
Compare this polynom with the specified object for equality. |
int |
hashCode()
Returns a hash value for this polynom. |
static void |
main(java.lang.String[] c)
Display to the standard output the roots of a polynomial equation. |
double[] |
roots()
Find the roots of this polynome. |
static double[] |
roots(double[] c)
Find the roots of a polynomial equation. |
java.lang.String |
toString()
Returns a string representation of this polynom. |
double |
y(double x)
Evaluate this polynomial equation for the specified x value. |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public Polynom(double[] c)
c
- The coefficients. This array is copied.Method Detail |
public final double y(double x)
c0 +
c1×x +
c2×x2 +
c3×x3 + ... +
cn×xn
.
public double[] roots()
public static double[] roots(double[] c)
c[0] +
c[1]*x +
c[2]*x2 +
c[3]*x3 +
... +
c[n]*xn == 0
where n is the array length minus 1.
c
- The coefficients for the polynomial equation.
java.lang.UnsupportedOperationException
- if there is more coefficients than this method
can handle.public static void main(java.lang.String[] c)
c[0] +
c[1]*x +
c[2]*x2 +
c[3]*x3 +
... +
c[n]*xn == 0
where n is the array length minus 1.
c
- The coefficients for the polynomial equation.public int hashCode()
public boolean equals(java.lang.Object object)
public java.lang.String toString()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |