API / geotoolkit / seismic / analysis / maths / ComplexMathUtils / ComplexMathUtils
maths.ComplexMathUtils.ComplexMathUtils
Class that has methods useful for operating on complex numbers Ported from the Saddleback Geosolution's Java implementation
Constructors
Methods
▸ getClassName(): string
string
▸ Static absCmplx(c): number
Gets the real magnitude of a complex number.
| Name | Type | Description |
|---|---|---|
c | ComplexNumber | The complex number. |
number
▸ Static getClassName(): string
string
▸ Static multCmplx(a, b): ComplexNumber
Multiplies two complex numbers a and b, returning complex number c.
| Name | Type | Description |
|---|---|---|
a | ComplexNumber | The first complex number. |
b | ComplexNumber | The second complex number. |