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

    Parameters
    ----------
    z: Complex128
        Complex number.

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

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


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

    Parameters
    ----------
    z: Complex128
        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/float64}}( 2 );
    > var v = {{alias}}.assign( new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 ), out, 1, 0 )
    <Float64Array>[ ~5.83, ~0.5404 ]
    > var bool = ( v === out )
    true

    See Also
    --------
