{{alias}}( z ) Returns the imaginary component of a single-precision complex floating-point number. Parameters ---------- z: Complex64 Complex number. Returns ------- im: number Imaginary component. Examples -------- > var z = new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 ); > var im = {{alias}}( z ) 3.0 See Also --------