time-to-botec/js/node_modules/@stdlib/complex/conj/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

27 lines
424 B
Plaintext

{{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
--------