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

27 lines
424 B
Plaintext
Raw Normal View History

{{alias}}( z )
Returns the complex conjugate of a complex number.
Parameters
----------
z: Complex
Complex number.
Returns
-------
out: Complex
Complex conjugate.
Examples
--------
> var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
> z.toString()
'5 + 3i'
> var v = {{alias}}( z );
> v.toString()
'5 - 3i'
See Also
--------