{{alias}}( z ) Returns the real component of a double-precision complex floating-point number. Parameters ---------- z: Complex128 Complex number. Returns ------- re: number Real component. Examples -------- > var z = new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 ); > var re = {{alias}}( z ) 5.0 See Also --------