
{{alias}}( z, n )
    Rounds each component of a double-precision complex floating-point number
    to the nearest multiple of `10^n`.

    When operating on floating-point numbers in bases other than `2`, rounding
    to specified digits can be inexact.

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

    n: integer
        Integer power of 10.

    Returns
    -------
    out: Complex128
        Result.

    Examples
    --------
    > var v = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 5.555, -3.336 ), -2 )
    <Complex128>[ 5.56, -3.34 ]

    See Also
    --------

