Complex |
Complex.acos() |
|
Complex |
Complex.acosh() |
|
Complex |
Complex.add(double addend) |
Returns a Complex whose value is (this + addend),
with addend interpreted as a real number.
|
Complex |
Complex.add(Complex addend) |
Returns a Complex whose value is (this + addend).
|
Complex |
Complex.addImaginary(double addend) |
Returns a Complex whose value is (this + addend),
with addend interpreted as an imaginary number.
|
Complex |
Complex.asin() |
|
Complex |
Complex.asinh() |
|
Complex |
Complex.atan() |
|
Complex |
Complex.atanh() |
|
Complex |
Complex.conj() |
Returns the
conjugate
\( \overline{z} \) of this complex number \( z \).
|
Complex |
Complex.cos() |
Returns the
cosine of this complex number.
|
Complex |
Complex.cosh() |
|
Complex |
Complex.divide(double divisor) |
Returns a Complex whose value is (this / divisor),
with divisor interpreted as a real number.
|
Complex |
Complex.divide(Complex divisor) |
Returns a Complex whose value is (this / divisor).
|
Complex |
Complex.divideImaginary(double divisor) |
Returns a Complex whose value is (this / divisor),
with divisor interpreted as an imaginary number.
|
Complex |
Complex.exp() |
|
Complex |
ArrayComplex.D0.get() |
get the value.
|
Complex |
ArrayComplex.D1.get(int i) |
get the value.
|
Complex |
ArrayComplex.D2.get(int i,
int j) |
get the value.
|
Complex |
ArrayComplex.D3.get(int i,
int j,
int k) |
get the value.
|
Complex |
ArrayComplex.D4.get(int i,
int j,
int k,
int l) |
get the value.
|
Complex |
ArrayComplex.D5.get(int i,
int j,
int k,
int l,
int m) |
get the value.
|
Complex |
ArrayComplex.D6.get(int i,
int j,
int k,
int l,
int m,
int n) |
get the value.
|
Complex |
ArrayComplex.D7.get(int i,
int j,
int k,
int l,
int m,
int n,
int o) |
get the value.
|
Complex |
ArrayComplex.get(Index i) |
get the value at the specified index.
|
abstract Complex |
Array.getComplex(int elem) |
|
abstract Complex |
Array.getComplex(Index ima) |
Get the array element at the current element of ima, as a complex.
|
Complex |
ArrayBoolean.getComplex(int index) |
|
Complex |
ArrayBoolean.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayByte.getComplex(int index) |
|
Complex |
ArrayByte.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayChar.getComplex(int index) |
|
Complex |
ArrayChar.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayComplex.getComplex(int index) |
|
Complex |
ArrayComplex.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayDate.getComplex(int index) |
|
Complex |
ArrayDate.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayDouble.getComplex(int index) |
|
Complex |
ArrayDouble.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayFloat.getComplex(int index) |
|
Complex |
ArrayFloat.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayInt.getComplex(int index) |
|
Complex |
ArrayInt.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayLong.getComplex(int index) |
|
Complex |
ArrayLong.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayObject.getComplex(int index) |
|
Complex |
ArrayObject.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayRagged.getComplex(int index) |
|
Complex |
ArrayRagged.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayScalar.getComplex(int index) |
|
Complex |
ArrayScalar.getComplex(Index index) |
|
Complex |
ArrayShort.getComplex(int index) |
|
Complex |
ArrayShort.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayString.getComplex(int index) |
|
Complex |
ArrayString.getComplex(Index i) |
|
Complex |
ArrayStructure.getComplex(int index) |
|
Complex |
ArrayStructure.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
ArrayStructureBak.getComplex(int index) |
|
Complex |
ArrayStructureBak.getComplex(Index i) |
not legal, throw ForbiddenConversionException
|
Complex |
IndexIterator.getComplexCurrent() |
Get current value as a complex
|
Complex |
IteratorFast.getComplexCurrent() |
|
Complex |
ListIterator.getComplexCurrent() |
|
Complex |
MixIterator.getComplexCurrent() |
|
Complex |
IndexIterator.getComplexNext() |
Get next value as a complex
|
Complex |
IteratorFast.getComplexNext() |
|
Complex |
ListIterator.getComplexNext() |
|
Complex |
MixIterator.getComplexNext() |
|
Complex |
ArrayComplex.D3.IF.getNext() |
|
Complex |
Complex.log() |
|
Complex |
Complex.log10() |
|
Complex |
Complex.multiply(double factor) |
Returns a Complex whose value is this * factor, with factor
interpreted as a real number.
|
Complex |
Complex.multiply(Complex factor) |
Returns a Complex whose value is this * factor.
|
Complex |
Complex.multiplyImaginary(double factor) |
Returns a Complex whose value is this * factor, with factor
interpreted as an imaginary number.
|
Complex |
Complex.negate() |
Returns a Complex whose value is the negation of both the real and imaginary parts
of complex number \( z \).
|
static Complex |
Complex.ofCartesian(double real,
double imaginary) |
Create a complex number given the real and imaginary parts.
|
static Complex |
Complex.ofCis(double x) |
Create a complex cis number.
|
static Complex |
Complex.ofPolar(double rho,
double theta) |
Creates a complex number from its polar representation using modulus rho (\( \rho \))
and phase angle theta (\( \theta \)).
\[ \begin{aligned}
x &= \rho \cos(\theta) \\
y &= \rho \sin(\theta) \end{aligned} \]
|
static Complex |
Complex.parse(String s) |
Returns a Complex instance representing the specified string s.
|
Complex |
Complex.pow(double x) |
Returns the complex power of this complex number raised to the power of x,
with x interpreted as a real number.
|
Complex |
Complex.pow(Complex x) |
Returns the complex power of this complex number raised to the power of x.
|
Complex |
Complex.proj() |
Returns the projection of this complex number onto the Riemann sphere.
|
Complex |
Complex.rDivide(double v) |
|
Complex |
Complex.rPow(double v) |
|
Complex |
Complex.rSubtract(double v) |
|
Complex |
Complex.sin() |
Returns the
sine of this complex number.
|
Complex |
Complex.sinh() |
|
Complex |
Complex.sqrt() |
|
Complex |
Complex.subtract(double subtrahend) |
Returns a Complex whose value is (this - subtrahend),
with subtrahend interpreted as a real number.
|
Complex |
Complex.subtract(Complex subtrahend) |
Returns a Complex whose value is (this - subtrahend).
|
Complex |
Complex.subtractFrom(double minuend) |
Returns a Complex whose value is (minuend - this),
with minuend interpreted as a real number.
|
Complex |
Complex.subtractFromImaginary(double minuend) |
Returns a Complex whose value is (this - subtrahend),
with minuend interpreted as an imaginary number.
|
Complex |
Complex.subtractImaginary(double subtrahend) |
Returns a Complex whose value is (this - subtrahend),
with subtrahend interpreted as an imaginary number.
|
Complex |
Complex.tan() |
Returns the
tangent of this complex number.
|
Complex |
Complex.tanh() |
|