ak.isclose
----------

Defined in `awkward.operations.structure <https://github.com/scikit-hep/awkward-1.0/blob/80bbef0738a6b7928333d7c705ee1b359991de5b/src/awkward/operations/structure.py>`__ on `line 4591 <https://github.com/scikit-hep/awkward-1.0/blob/80bbef0738a6b7928333d7c705ee1b359991de5b/src/awkward/operations/structure.py#L4591>`__.

.. py:function:: ak.isclose(a, b, rtol=1e-05, atol=1e-08, equal_nan=False, highlevel=True, behavior=None)


    :param a: First array to compare.
    :param b: Second array to compare.
    :param rtol: The relative tolerance parameter.
    :type rtol: float
    :param atol: The absolute tolerance parameter.
    :type atol: float
    :param equal_nan: Whether to compare ``NaN`` as equal. If True, ``NaN`` in ``a``
                  will be considered equal to ``NaN`` in ``b``.
    :type equal_nan: bool
    :param highlevel: If True, return an :py:obj:`ak.Array`; otherwise, return
                  a low-level :py:obj:`ak.layout.Content` subclass.
    :type highlevel: bool
    :param behavior: Custom :py:obj:`ak.behavior` for the output array, if
                 high-level.
    :type behavior: None or dict

Implements `np.isclose <https://numpy.org/doc/stable/reference/generated/numpy.isclose.html>`__
for Awkward Arrays.

