Uses of Class
edu.jas.arith.BigComplex
-
Packages that use BigComplex Package Description edu.jas.arith Basic arithmetic package.edu.jas.poly Generic coefficients polynomial package. -
-
Uses of BigComplex in edu.jas.arith
Fields in edu.jas.arith declared as BigComplex Modifier and Type Field Description static BigComplex
BigComplex. I
The constant i.static BigComplex
BigComplex. ONE
The constant 1.static BigComplex
BigComplex. ZERO
The constant 0.Methods in edu.jas.arith that return BigComplex Modifier and Type Method Description BigComplex
BigComplex. 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
BigComplex. conjugate()
Complex number conjugate.BigComplex
BigComplex. copy()
Clone this.BigComplex
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
BigComplex. divide(BigComplex B)
Complex number divide.BigComplex[]
BigComplex. egcd(BigComplex S)
BigComplex extended greatest common divisor.BigComplex
BigComplex. factory()
Get the corresponding element factory.BigComplex
BigComplex. fromInteger(long a)
Get a BigComplex element from a long.BigComplex
BigComplex. fromInteger(java.math.BigInteger a)
Get a BigComplex element from a BigInteger.BigComplex
BigComplex. gcd(BigComplex S)
Complex number greatest common divisor.BigComplex
BigComplex. getIMAG()
Get the i element.BigComplex
BigComplex. getONE()
Get the one element.BigComplex
BigComplex. getZERO()
Get the zero element.BigComplex
BigComplex. inverse()
Complex number inverse.BigComplex
BigComplex. multiply(BigComplex B)
Complex number product.BigComplex
BigComplex. negate()
Complex number negative.BigComplex
BigComplex. norm()
Complex number norm.BigComplex
BigComplex. parse(java.io.Reader r)
Parse complex number from Reader.BigComplex
BigComplex. parse(java.lang.String s)
Parse complex number from string.BigComplex[]
BigComplex. quotientRemainder(BigComplex S)
Quotient and remainder by division of this by S.BigComplex
BigComplex. random(int n)
Complex number, random.BigComplex
BigComplex. random(int n, java.util.Random rnd)
Complex number, random.BigComplex
BigComplex. remainder(BigComplex S)
Complex number inverse.static BigComplex
Roots. sqrt(BigComplex A)
Square root.BigComplex
BigComplex. subtract(BigComplex B)
Complex number subtract.BigComplex
BigComplex. sum(BigComplex B)
Complex number summation.Methods in edu.jas.arith that return types with arguments of type BigComplex Modifier and Type Method Description java.util.List<BigComplex>
BigComplex. generators()
Get a list of the generating elements.Methods in edu.jas.arith with parameters of type BigComplex Modifier and Type Method Description static 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
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
BigComplex. divide(BigComplex B)
Complex number divide.BigComplex[]
BigComplex. egcd(BigComplex S)
BigComplex extended greatest common divisor.BigComplex
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
BigComplex. multiply(BigComplex B)
Complex number product.BigComplex[]
BigComplex. quotientRemainder(BigComplex S)
Quotient and remainder by division of this by S.BigComplex
BigComplex. remainder(BigComplex S)
Complex number inverse.static BigComplex
Roots. sqrt(BigComplex A)
Square root.BigComplex
BigComplex. subtract(BigComplex B)
Complex number subtract.BigComplex
BigComplex. sum(BigComplex B)
Complex number summation.Constructors in edu.jas.arith with parameters of type BigComplex Constructor Description BigDecimalComplex(BigComplex a)
The 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.BigQuaternionInteger(BigQuaternionRing fac, BigComplex r)
Constructor for a BigQuaternion from BigComplex. -
Uses of BigComplex in edu.jas.poly
Methods in edu.jas.poly that return BigComplex Modifier and Type Method Description BigComplex
RatToCompl. eval(BigRational c)
Methods in edu.jas.poly that return types with arguments of type BigComplex Modifier and Type Method Description static GenPolynomial<BigComplex>
PolyUtil. complexFromRational(GenPolynomialRing<BigComplex> fac, GenPolynomial<BigRational> A)
Complex from rational coefficients.Methods in edu.jas.poly with parameters of type BigComplex Modifier and Type Method Description BigRational
ImagPart. eval(BigComplex c)
BigRational
RealPart. eval(BigComplex c)
Method parameters in edu.jas.poly with type arguments of type BigComplex Modifier and Type Method Description static 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.
-