Uses of Class
org.geotools.metadata.math.Complex
-
Packages that use Complex Package Description org.geotools.metadata.math A set of mathematical objects and algebraic utilities. -
-
Uses of Complex in org.geotools.metadata.math
Methods in org.geotools.metadata.math that return Complex Modifier and Type Method Description Complex
Complex. clone()
Returns a copy of this complex number.Methods in org.geotools.metadata.math with parameters of type Complex Modifier and Type Method Description void
Complex. add(Complex c1, Complex c2)
Adds to complex numbers.void
Complex. addMultiply(Complex c0, Complex c1, Complex c2)
Multplies two complex numbers, and add the result to a third one.void
Complex. copy(Complex c)
Set this complex number to the same value than the specified one.void
Complex. divide(Complex c1, Complex c2)
Divides one complex number by another.boolean
Complex. equals(Complex c)
Returnstrue
if this complex number has the same value than the specified one.void
Complex. multiply(Complex c, double s)
Multiplies a complex number by a scalar.void
Complex. multiply(Complex c1, Complex c2)
Multplies two complex numbers.void
Complex. power(Complex c, int power)
Computes the integer power of a complex number up to 6.Constructors in org.geotools.metadata.math with parameters of type Complex Constructor Description Complex(Complex c)
Creates a complex number initialized to the same value than the specified one.
-