Private
#$The cached string representation for this complex number.
Private
#hashThe cached hashcode for this complex number.
The prototype object of this instance.
The constructor function for this instance.
Readonly
imagThe imaginary part of the complex number.
Compute the absolute value (modulus or magnitude) of this complex number.
The absolute length value of this complex number.
mod
Complex
Alias of Complex::abs().
Compute the squared absolute value of this complex number.
The squared absolute value of this complex number.
modSq
Complex
Alias of Complex::abs_squared().
Readonly
realThe real part of the complex number.
Static
Private
#epsilonThe default maximum difference allowed when testing complex numbers.
Static
Readonly
DEG_The conversion factor from degrees to radians (Math.PI / 180).
Static
Readonly
PIPi. Ratio of the circumference of a circle to its diameter.
Static
Readonly
RAD_The conversion factor from radians to degrees (180 / Math.PI).
Static
Readonly
TAUTau. Ratio of the circumference of a circle to its radius (2pi).
Static
Readonly
ZEROA complex number representing zero.
Static
Readonly
_0_A complex number representing 0 + 1i.
Static
Readonly
_0_A complex number representing 0 - 1i.
Static
Readonly
_1_A complex number representing 1 + 0i.
Static
Readonly
_1_A complex number representing -1 + 0i.
Static
Protected
Readonly
_IMMUTABLEMap of property descriptors that define the real & imag properties of a Complex object as read-only; so instances of class Complex are immutable.
Static
Protected
Readonly
_METHODStatic property's name to check if some constructor is of type Complex.
Static
Protected
Readonly
_READONLYA property descriptor object that defines a property as read-only by setting its attribute writable to false.
Static
Protected
Readonly
_TYPEDProperty's name to check if an object is a TypedArray.
Static
Protected
Readonly
_hashFBufA Float64Array buffer used to store the binary representation of the real or imaginary part of a complex number for hashcode computation.
Static
Protected
Readonly
_hashIBufA Uint8Array buffer view that shares the same memory block as _hashFBuf, used to access the individual bytes of the real or imaginary part of a complex number for hashcode computation.
Returns the name of the constructor of this complex number.
The name of the constructor of this complex number.
Static
epsilonGet the default maximum difference allowed when testing complex numbers.
The maximum difference allowed.
Set the default maximum difference allowed when testing complex numbers.
The max diff allowed. Must be > 0 and < 1.
If epsilon to be set is <= 0 or >=1.
Returns a string representation of this complex number.
Optional
precision: number = 0Number of significant digits to display.
Optional
Optional
$: string = ''Extra info to append to the string representation.
Optional
A string representation of this complex number.
This method compares this complex number with another. The main purpose of this is to define an appropriate sort order. Returns: Zero if the numbers are the same when using the equals method. Negative if considered less than z. Positive if considered larger than z.
the complex number to compare with.
-1, 0 or +1
Checks if this complex number is equal to another complex number within a given tolerance.
The other complex number to compare with.
Optional
epsilon: number = Complex.#epsilonThe tolerance for equality.
Optional
True if the two numbers are equal within the given tolerance, false otherwise.
Checks if this complex number is real within a given tolerance.
Optional
epsilon: number = Complex.#epsilonThe tolerance for checking if the imaginary part is zero.
Optional
True if the imaginary part is zero within the given tolerance, false otherwise.
Checks if this complex number is zero within a given tolerance.
Optional
epsilon: number = Complex.#epsilonThe tolerance for checking if both the real and imaginary parts are zero.
Optional
True if both the real and imaginary parts are zero within the given tolerance, false otherwise.
Static
Protected
_ctorProtected
Get input constructor c if typeof Complex; or fallback to Complex.
The constructor function to verify.
Param c if type Complex; otherwise a Complex constructor.
Static
Protected
_newProtected
Create a new instance of a given Complex constructor function.
Extends typeof Complex.
An existing Complex constructor.
Rest
...args: anyReal & imaginary number parts.
Rest
A new instance of a complex number.
Static
arrSpecific type of the passed TypedArray.
The TypedArray to clone.
A new TypedArray of same datatype containing the elements of the input TypedArray.
The type of elements in the Array or Iterable object.
The Array or Iterable object to clone.
A new Array containing the elements of the input Array or Iterable object.
Static
compareStatic
filterGiven an array of complex numbers return a new array containing a clone of those that represent real numbers. The original array is unchanged.
Extends typeof Complex.
Rest
...this: anyRest
The original array or iterable.
Optional
epsilon: numberMax diffference allowed.
Optional
Rest
..._args: anyExtended parameters.
Rest
Array of Complex representing real numbers.
Static
fromReturn a complex number given polar coordinates.
Extends typeof Complex.
Rest
...this: anyRest
The length of the complex number.
The angle subtended by the number.
Rest
..._args: anyExtended parameters.
Rest
Complex of given length & orientation.
Static
fromRIReturn a complex number given values for the real & imaginary parts.
Extends typeof Complex.
Rest
...this: anyRest
Optional
re: numberThe real part.
Optional
Optional
im: numberThe imaginary part.
Optional
Rest
..._args: anyExtended parameters.
Rest
The complex number of given real & imaginary parts.
Static
fromReturn a complex number of a given size but random orientation.
Extends typeof Complex.
Rest
...this: any = 1Rest
Optional
mod: numberThe length of the complex number.
Optional
Rest
..._args: anyExtended parameters.
Rest
Complex of given length & random orientation.
Static
fromZReturn a new complex number using given object's props real & imag.
Extends typeof Complex.
Rest
...this: anyRest
Rest
..._args: anyExtended parameters.
Rest
Duplicate of the given Complex object.
Static
isCheck if a function is a Complex datatype constructor.
Extends typeof Complex.
The constructor function to check.
True if param c is or inherits from Complex class.
Static
removeIf the original array contains more than 1 element the new array is returned with duplicates removed leaving just unique vales. In all cases a clone is returned and the original array is unchanged.
Instance of Complex type.
The original array or iterable.
Optional
epsilon: number = Complex.#epsilonMax diffference allowed.
Optional
A new array with duplicates removed.
Static
sortReturns a new array with the elements sorted by their real value. Numbers w/ same real value are then sorted by their imaginary value. The original array or iterable is unchanged.
Instance of Complex type.
The original array or iterable.
Optional
sort: Compare = Complex.compareThe sorting callback.
Optional
A new sorted array.
Static
toStatic
toGenerated using TypeDoc
An immutable complex number class with real and imaginary parts.
Name
Complex