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