
{{alias}}( [out,] re1, im1, re2, im2 )
    Multiplies two complex numbers.

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

    re1: number
        Real component.

    im1: number
        Imaginary component.

    re2: number
        Real component.

    im2: number
        Imaginary component.

    Returns
    -------
    out: Array|TypedArray|Object
        Array containing the real and imaginary components of the result.

    Examples
    --------
    > var out = {{alias}}( 5.0, 3.0, -2.0, 1.0 )
    [ -13.0, -1.0 ]

    // Provide an output array:
    > var out = new {{alias:@stdlib/array/float64}}( 2 );
    > var v = {{alias}}( out, 5.0, 3.0, -2.0, 1.0 )
    <Float64Array>[ -13.0, -1.0 ]
    > var bool = ( v === out )
    true

    See Also
    --------

