time-to-botec

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

repl.txt (370B)


      1 
      2 {{alias}}( z )
      3     Returns the imaginary component of a complex number.
      4 
      5     Parameters
      6     ----------
      7     z: Complex
      8         Complex number.
      9 
     10     Returns
     11     -------
     12     im: number
     13         Imaginary component.
     14 
     15     Examples
     16     --------
     17     > var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
     18     > var im = {{alias}}( z )
     19     3.0
     20 
     21     See Also
     22     --------
     23