Package | Description |
---|---|
jsat.math |
Modifier and Type | Method and Description |
---|---|
Complex |
Complex.add(Complex c)
Creates a new complex number containing the resulting addition of this and another
|
protected Complex |
Complex.clone() |
Complex |
Complex.divide(Complex c)
Creates a new complex number containing the resulting division of this by
another
|
Complex |
Complex.getConjugate()
Returns a new complex number representing the complex conjugate of this
one
|
static Complex |
Complex.I()
Returns the complex number representing sqrt(-1)
|
Complex |
Complex.multiply(Complex c)
Creates a new complex number containing the resulting multiplication between this and another
|
Complex |
Complex.subtract(Complex c)
Creates a new complex number containing the resulting subtracting another from this one
|
Modifier and Type | Method and Description |
---|---|
Complex |
Complex.add(Complex c)
Creates a new complex number containing the resulting addition of this and another
|
Complex |
Complex.divide(Complex c)
Creates a new complex number containing the resulting division of this by
another
|
Complex |
Complex.multiply(Complex c)
Creates a new complex number containing the resulting multiplication between this and another
|
void |
Complex.mutableAdd(Complex c)
Alters this complex number to contain the result of the addition of another
|
void |
Complex.mutableDivide(Complex c)
Alters this complex number to contain the result of the division by another
|
void |
Complex.mutableMultiply(Complex c)
Alters this complex number to contain the result of the multiplication of another
|
void |
Complex.mutableSubtract(Complex c)
Alters this complex number to contain the result of the subtraction of another
|
Complex |
Complex.subtract(Complex c)
Creates a new complex number containing the resulting subtracting another from this one
|
Copyright © 2017. All rights reserved.