time-to-botec/js/node_modules/@stdlib/complex/float64/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

45 lines
821 B
Plaintext

{{alias}}( real, imag )
128-bit complex number constructor.
Both the real and imaginary components are stored as double-precision
floating-point numbers.
Parameters
----------
real: number
Real component.
imag: number
Imaginary component.
Returns
-------
z: Complex128
128-bit complex number.
z.re: number
Read-only property returning the real component.
z.im: number
Read-only property returning the imaginary component.
z.BYTES_PER_ELEMENT
Size (in bytes) of each component. Value: 8.
z.byteLength
Length (in bytes) of a complex number. Value: 16.
Examples
--------
> var z = new {{alias}}( 5.0, 3.0 )
<Complex128>
> z.re
5.0
> z.im
3.0
See Also
--------