
{{alias}}( [out,] re, im )
    Computes the inverse of a complex number.

    Parameters
    ----------
    out: Array|TypedArray|Object (optional)
        Output array.

    re: number
        Real component.

    im: number
        Imaginary component.

    Returns
    -------
    out: Array|TypedArray|Object
        Real and imaginary components.

    Examples
    --------
    > var y = {{alias}}( 2.0, 4.0 )
    [ 0.1, -0.2 ]

    > var out = new {{alias:@stdlib/array/float64}}( 2 );
    > var v = {{alias}}( out, 2.0, 4.0 )
    <Float64Array>[ 0.1, -0.2 ]
    > var bool = ( v === out )
    true

    See Also
    --------

