Uses of Class
dev.nm.number.complex.Complex
-
Packages that use Complex Package Description dev.nm.algebra.linear.matrix.generic.matrixtype dev.nm.analysis.function.polynomial dev.nm.analysis.function.polynomial.root dev.nm.number.complex -
-
Uses of Complex in dev.nm.algebra.linear.matrix.generic.matrixtype
Methods in dev.nm.algebra.linear.matrix.generic.matrixtype that return Complex Modifier and Type Method Description ComplexComplexMatrix. get(int row, int col)Methods in dev.nm.algebra.linear.matrix.generic.matrixtype with parameters of type Complex Modifier and Type Method Description ComplexMatrixComplexMatrix. scaled(Complex scalar)voidComplexMatrix. set(int row, int col, Complex value)Constructors in dev.nm.algebra.linear.matrix.generic.matrixtype with parameters of type Complex Constructor Description ComplexMatrix(Complex[][] data)Construct aComplexmatrix. -
Uses of Complex in dev.nm.analysis.function.polynomial
Methods in dev.nm.analysis.function.polynomial that return Complex Modifier and Type Method Description ComplexPolynomial. evaluate(Complex z)Evaluate this polynomial at x.ComplexPolynomial. evaluate(Number x)Evaluate this polynomial at x.Methods in dev.nm.analysis.function.polynomial with parameters of type Complex Modifier and Type Method Description ComplexPolynomial. evaluate(Complex z)Evaluate this polynomial at x. -
Uses of Complex in dev.nm.analysis.function.polynomial.root
Methods in dev.nm.analysis.function.polynomial.root that return types with arguments of type Complex Modifier and Type Method Description static List<Complex>PolyRoot. getComplexRoots(List<? extends Number> roots)Get a copy of only theComplexbut not real roots of a polynomial. -
Uses of Complex in dev.nm.number.complex
Fields in dev.nm.number.complex declared as Complex Modifier and Type Field Description static ComplexComplex. Ia number representing 0.0 + 1.0i, the square root of -1static ComplexComplex. NaNa number representing the complex Not-a-Number (NaN)static ComplexComplex. NEGATIVE_INFINITYa number representing -∞ + -∞istatic ComplexComplex. ONEa number representing 1.0 + 0.0istatic ComplexComplex. POSITIVE_INFINITYa number representing +∞ + ∞istatic ComplexComplex. ZEROa number representing 0.0 + 0.0iMethods in dev.nm.number.complex that return Complex Modifier and Type Method Description static ComplexElementaryFunction. acos(Complex z)Inverse of cosine.ComplexComplex. add(Complex that)static ComplexElementaryFunction. asin(Complex z)Inverse of sine.static ComplexElementaryFunction. atan(Complex z)Inverse of tangent.ComplexComplex. conjugate()Get the conjugate of the complex number, namely, (a - bi).static ComplexElementaryFunction. cos(Complex z)Cosine of a complex number.static ComplexElementaryFunction. cosh(Complex z)Hyperbolic cosine of a complex number.ComplexComplex. divide(Complex that)Compute the quotient of this complex number divided by another complex number.static ComplexElementaryFunction. exp(Complex z)Exponential of a complex number.static ComplexComplex. fromPolar(double r, double theta)Factory method to construct a complex number from the polar form: (r, θ).ComplexComplex. inverse()static ComplexElementaryFunction. log(Complex z)Natural logarithm of a complex number.ComplexComplex. minus(Complex that)ComplexComplex. multiply(Complex that)Compute the product of this complex number and that complex number.ComplexComplex. ONE()Get one - the number representing 1.0 + 0.0i.ComplexComplex. opposite()static ComplexElementaryFunction. pow(Complex z1, Complex z2)z1 to the power z2.static ComplexElementaryFunction. sin(Complex z)Sine of a complex number.static ComplexElementaryFunction. sinh(Complex z)Hyperbolic sine of a complex number.static ComplexElementaryFunction. sqrt(Complex z)Square root of a complex number.static ComplexElementaryFunction. tan(Complex z)Tangent of a complex number.static ComplexElementaryFunction. tanh(Complex z)Hyperbolic tangent of a complex number.ComplexComplex. ZERO()Get zero - the number representing 0.0 + 0.0i.Methods in dev.nm.number.complex with parameters of type Complex Modifier and Type Method Description static ComplexElementaryFunction. acos(Complex z)Inverse of cosine.ComplexComplex. add(Complex that)static ComplexElementaryFunction. asin(Complex z)Inverse of sine.static ComplexElementaryFunction. atan(Complex z)Inverse of tangent.static ComplexElementaryFunction. cos(Complex z)Cosine of a complex number.static ComplexElementaryFunction. cosh(Complex z)Hyperbolic cosine of a complex number.ComplexComplex. divide(Complex that)Compute the quotient of this complex number divided by another complex number.static ComplexElementaryFunction. exp(Complex z)Exponential of a complex number.static booleanComplex. isInfinite(Complex z)Check if a complex number is an infinity; i.e., either the real or the imaginary part is infinite, c.f.,Double.isInfinite(), and the number is not aNaN.static booleanComplex. isNaN(Complex z)Check if a complex number is anNaN; i.e., either the real or the imaginary part is anNaN.static booleanComplex. isReal(Complex z)Check if this complex number is a real number; i.e., the imaginary part is 0.static ComplexElementaryFunction. log(Complex z)Natural logarithm of a complex number.ComplexComplex. minus(Complex that)ComplexComplex. multiply(Complex that)Compute the product of this complex number and that complex number.static ComplexElementaryFunction. pow(Complex z1, Complex z2)z1 to the power z2.static ComplexElementaryFunction. sin(Complex z)Sine of a complex number.static ComplexElementaryFunction. sinh(Complex z)Hyperbolic sine of a complex number.static ComplexElementaryFunction. sqrt(Complex z)Square root of a complex number.static ComplexElementaryFunction. tan(Complex z)Tangent of a complex number.static ComplexElementaryFunction. tanh(Complex z)Hyperbolic tangent of a complex number.
-