time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (424B)


      1 
      2 {{alias}}( z )
      3     Returns the complex conjugate of a complex number.
      4 
      5     Parameters
      6     ----------
      7     z: Complex
      8         Complex number.
      9 
     10     Returns
     11     -------
     12     out: Complex
     13         Complex conjugate.
     14 
     15     Examples
     16     --------
     17     > var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
     18     > z.toString()
     19     '5 + 3i'
     20     > var v = {{alias}}( z );
     21     > v.toString()
     22     '5 - 3i'
     23 
     24     See Also
     25     --------
     26