
{{alias}}( z )
    Returns the absolute value and phase of a single-precision complex
    floating-point number.

    Parameters
    ----------
    z: Complex64
        Complex number.

    Returns
    -------
    out: Array<number>
        Absolute value and phase, respectively.

    Examples
    --------
    > var out = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 ) )
    [ ~5.83, ~0.5404 ]


{{alias}}.assign( z, out, stride, offset )
    Returns the absolute value and phase of a single-precision complex
    floating-point number and assigns results to a provided output array.

    Parameters
    ----------
    z: Complex64
        Complex number.

    out: Array|TypedArray|Object
        Destination array.

    stride: integer
        Output array stride.

    offset: integer
        Output array index offset.

    Returns
    -------
    out: Array|TypedArray|Object
        Absolute value and phase, respectively.

    Examples
    --------
    > var out = new {{alias:@stdlib/array/float32}}( 2 );
    > var v = {{alias}}.assign( new {{alias:@stdlib/complex/float32/ctor}}( 5.0, 3.0 ), out, 1, 0 )
    <Float32Array>[ ~5.83, ~0.5404 ]
    > var bool = ( v === out )
    true

    See Also
    --------
