time-to-botec/squiggle/node_modules/@stdlib/complex/imag/docs/repl.txt

24 lines
370 B
Plaintext
Raw Normal View History

{{alias}}( z )
Returns the imaginary component of a complex number.
Parameters
----------
z: Complex
Complex number.
Returns
-------
im: number
Imaginary component.
Examples
--------
> var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
> var im = {{alias}}( z )
3.0
See Also
--------