Uses of Class
edu.jas.arith.BigComplex
Packages that use BigComplex
Package
Description
Basic arithmetic package.
Generic coefficients polynomial package.
-
Uses of BigComplex in edu.jas.arith
Fields in edu.jas.arith declared as BigComplexModifier and TypeFieldDescriptionstatic final BigComplex
BigComplex.I
The constant i.static final BigComplex
BigComplex.ONE
The constant 1.static final BigComplex
BigComplex.ZERO
The constant 0.Methods in edu.jas.arith that return BigComplexModifier and TypeMethodDescriptionBigComplex.abs()
Complex number absolute value.static BigComplex
BigComplex.CCON
(BigComplex A) Complex number conjugate.static BigComplex
BigComplex.CDIF
(BigComplex A, BigComplex B) Complex number difference.static BigComplex
BigComplex.CINV
(BigComplex A) Complex number inverse.static BigComplex
BigComplex.CNEG
(BigComplex A) Complex number negative.BigComplex.conjugate()
Complex number conjugate.BigComplex.copy()
Clone this.BigComplex.copy
(BigComplex c) Copy BigComplex element c.static BigComplex
BigComplex.CPROD
(BigComplex A, BigComplex B) Complex number product.static BigComplex
BigComplex.CQ
(BigComplex A, BigComplex B) Complex number quotient.static BigComplex
BigComplex.CRAND
(int n) Complex number, random.static BigComplex
BigComplex.CSUM
(BigComplex A, BigComplex B) Complex number sum.BigComplex.divide
(BigComplex B) Complex number divide.BigComplex.egcd
(BigComplex S) BigComplex extended greatest common divisor.BigComplex.factory()
Get the corresponding element factory.BigComplex.fromInteger
(long a) Get a BigComplex element from a long.BigComplex.fromInteger
(BigInteger a) Get a BigComplex element from a BigInteger.BigComplex.gcd
(BigComplex S) Complex number greatest common divisor.BigComplex.getIMAG()
Get the i element.BigComplex.getONE()
Get the one element.BigComplex.getZERO()
Get the zero element.BigComplex.inverse()
Complex number inverse.BigComplex.multiply
(BigComplex B) Complex number product.BigComplex.negate()
Complex number negative.BigComplex.norm()
Complex number norm.Parse complex number from Reader.Parse complex number from string.BigComplex.quotientRemainder
(BigComplex S) Quotient and remainder by division of this by S.BigComplex.random
(int n) Complex number, random.Complex number, random.BigComplex.remainder
(BigComplex S) Complex number inverse.static BigComplex
Roots.sqrt
(BigComplex A) Square root.BigComplex.subtract
(BigComplex B) Complex number subtract.BigComplex.sum
(BigComplex B) Complex number summation.Methods in edu.jas.arith that return types with arguments of type BigComplexMethods in edu.jas.arith with parameters of type BigComplexModifier and TypeMethodDescriptionstatic BigRational
BigComplex.CABS
(BigComplex A) Complex number absolute value.static BigComplex
BigComplex.CCON
(BigComplex A) Complex number conjugate.static BigComplex
BigComplex.CDIF
(BigComplex A, BigComplex B) Complex number difference.static BigComplex
BigComplex.CINV
(BigComplex A) Complex number inverse.static BigComplex
BigComplex.CNEG
(BigComplex A) Complex number negative.int
BigComplex.compareTo
(BigComplex b) Since complex numbers are unordered, we use lexicographical order of re and im.BigComplex.copy
(BigComplex c) Copy BigComplex element c.static BigComplex
BigComplex.CPROD
(BigComplex A, BigComplex B) Complex number product.static BigComplex
BigComplex.CQ
(BigComplex A, BigComplex B) Complex number quotient.static BigComplex
BigComplex.CSUM
(BigComplex A, BigComplex B) Complex number sum.BigComplex.divide
(BigComplex B) Complex number divide.BigComplex.egcd
(BigComplex S) BigComplex extended greatest common divisor.BigComplex.gcd
(BigComplex S) Complex number greatest common divisor.static boolean
BigComplex.isCONE
(BigComplex A) Complex number one.static boolean
BigComplex.isCZERO
(BigComplex A) Complex number zero.BigComplex.multiply
(BigComplex B) Complex number product.BigComplex.quotientRemainder
(BigComplex S) Quotient and remainder by division of this by S.BigComplex.remainder
(BigComplex S) Complex number inverse.static BigComplex
Roots.sqrt
(BigComplex A) Square root.BigComplex.subtract
(BigComplex B) Complex number subtract.BigComplex.sum
(BigComplex B) Complex number summation.Constructors in edu.jas.arith with parameters of type BigComplexModifierConstructorDescriptionThe constructor creates a BigDecimalComplex object from a BigComplex object.BigOctonion
(BigQuaternionRing fac, BigComplex r) Constructor for a BigOctonion from BigComplex.BigQuaternion
(BigQuaternionRing fac, BigComplex r) Constructor for a BigQuaternion from BigComplex.Constructor for a BigQuaternion from BigComplex. -
Uses of BigComplex in edu.jas.poly
Methods in edu.jas.poly that return BigComplexMethods in edu.jas.poly that return types with arguments of type BigComplexModifier and TypeMethodDescriptionstatic GenPolynomial
<BigComplex> PolyUtil.complexFromRational
(GenPolynomialRing<BigComplex> fac, GenPolynomial<BigRational> A) Complex from rational coefficients.Methods in edu.jas.poly with parameters of type BigComplexMethod parameters in edu.jas.poly with type arguments of type BigComplexModifier and TypeMethodDescriptionstatic GenPolynomial
<BigComplex> PolyUtil.complexFromRational
(GenPolynomialRing<BigComplex> fac, GenPolynomial<BigRational> A) Complex from rational coefficients.static GenPolynomial
<BigRational> PolyUtil.imaginaryPart
(GenPolynomialRing<BigRational> fac, GenPolynomial<BigComplex> A) Imaginary part.static GenPolynomial
<BigRational> PolyUtil.realPart
(GenPolynomialRing<BigRational> fac, GenPolynomial<BigComplex> A) Real part.