
{{alias}}( v1, v2, maxULP )
    Tests if two arguments are both generic arrays and contain respective
    elements which are approximately equal within a specified number of ULPs
    (units in the last place).

    The function returns `false` if either input value is a generic array
    containing `NaN`.

    The function does not distinguish between `-0` and `+0`, treating them as
    equal.

    Parameters
    ----------
    v1: any
        First input value.

    v2: any
        Second input value.

    maxULP: integer
        Maximum allowed ULP difference.

    Returns
    -------
    bool: boolean
        Boolean indicating whether two arguments are approximately equal.

    Examples
    --------
    > var x = [ 1.0, 2.0, 3.0 ];
    > var y = [ 1.0, 2.0, 3.0 ];
    > var bool = {{alias}}( x, y, 0 )
    true

    > x = [ NaN, NaN, NaN ];
    > y = [ NaN, NaN, NaN ];
    > bool = {{alias}}( x, y, 1 )
    false

    See Also
    --------

