Uses of Class
org.noise_planet.noisemodelling.pathfinder.utils.ComplexNumber
-
Packages that use ComplexNumber Package Description org.noise_planet.noisemodelling.pathfinder.utils -
-
Uses of ComplexNumber in org.noise_planet.noisemodelling.pathfinder.utils
Methods in org.noise_planet.noisemodelling.pathfinder.utils that return ComplexNumber Modifier and Type Method Description static ComplexNumber
ComplexNumber. add(ComplexNumber z1, ComplexNumber z2)
Adds twoComplexNumber
.ComplexNumber
ComplexNumber. conjugate()
The complex conjugate of the current complex number.static ComplexNumber
ComplexNumber. cos(ComplexNumber z)
Calculates the cosine of theComplexNumber
static ComplexNumber
ComplexNumber. cosec(ComplexNumber z)
Calculates the co-secant of theComplexNumber
static ComplexNumber
ComplexNumber. cot(ComplexNumber z)
Calculates the co-tangent of theComplexNumber
static ComplexNumber
ComplexNumber. divide(ComplexNumber z1, ComplexNumber z2)
Divides oneComplexNumber
by another.static ComplexNumber
ComplexNumber. exp(ComplexNumber z)
Calculates the exponential of theComplexNumber
ComplexNumber
ComplexNumber. inverse()
The inverse/reciprocal of the complex number.static ComplexNumber
ComplexNumber. multiply(ComplexNumber z1, ComplexNumber z2)
Multiplies oneComplexNumber
to another.static ComplexNumber
ComplexNumber. parseComplex(String s)
Parses theString
as aComplexNumber
of type x+yi.static ComplexNumber
ComplexNumber. pow(ComplexNumber z, int power)
Calculates theComplexNumber
to the passed integer power.static ComplexNumber
ComplexNumber. sec(ComplexNumber z)
Calculates the secant of theComplexNumber
static ComplexNumber
ComplexNumber. sin(ComplexNumber z)
Calculates the sine of theComplexNumber
ComplexNumber
ComplexNumber. square()
The square of the current complex number.static ComplexNumber
ComplexNumber. subtract(ComplexNumber z1, ComplexNumber z2)
Subtracts oneComplexNumber
from another.static ComplexNumber
ComplexNumber. tan(ComplexNumber z)
Calculates the tangent of theComplexNumber
Methods in org.noise_planet.noisemodelling.pathfinder.utils with parameters of type ComplexNumber Modifier and Type Method Description void
ComplexNumber. add(ComplexNumber z)
Adds anotherComplexNumber
to the current complex number.static ComplexNumber
ComplexNumber. add(ComplexNumber z1, ComplexNumber z2)
Adds twoComplexNumber
.static ComplexNumber
ComplexNumber. cos(ComplexNumber z)
Calculates the cosine of theComplexNumber
static ComplexNumber
ComplexNumber. cosec(ComplexNumber z)
Calculates the co-secant of theComplexNumber
static ComplexNumber
ComplexNumber. cot(ComplexNumber z)
Calculates the co-tangent of theComplexNumber
void
ComplexNumber. divide(ComplexNumber z)
Divides the currentComplexNumber
by anotherComplexNumber
.static ComplexNumber
ComplexNumber. divide(ComplexNumber z1, ComplexNumber z2)
Divides oneComplexNumber
by another.static ComplexNumber
ComplexNumber. exp(ComplexNumber z)
Calculates the exponential of theComplexNumber
void
ComplexNumber. multiply(ComplexNumber z)
Multiplies anotherComplexNumber
to the current complex number.static ComplexNumber
ComplexNumber. multiply(ComplexNumber z1, ComplexNumber z2)
Multiplies oneComplexNumber
to another.static ComplexNumber
ComplexNumber. pow(ComplexNumber z, int power)
Calculates theComplexNumber
to the passed integer power.static ComplexNumber
ComplexNumber. sec(ComplexNumber z)
Calculates the secant of theComplexNumber
void
ComplexNumber. set(ComplexNumber z)
Sets the value of current complex number to the passed complex number.static ComplexNumber
ComplexNumber. sin(ComplexNumber z)
Calculates the sine of theComplexNumber
void
ComplexNumber. subtract(ComplexNumber z)
Subtracts anotherComplexNumber
from the current complex number.static ComplexNumber
ComplexNumber. subtract(ComplexNumber z1, ComplexNumber z2)
Subtracts oneComplexNumber
from another.static ComplexNumber
ComplexNumber. tan(ComplexNumber z)
Calculates the tangent of theComplexNumber
-