bifocal/node_modules/@stdlib/complex-reim/docs/repl.txt

25 lines
495 B
Plaintext

{{alias}}( z )
Returns the real and imaginary components of a double-precision complex
floating-point number.
Parameters
----------
z: Complex128
Complex number.
Returns
-------
out: Float64Array
Array containing the real and imaginary components, respectively.
Examples
--------
> var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
> var out = {{alias}}( z )
<Float64Array>[ 5.0, 3.0 ]
See Also
--------