You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inexact equality comparison - behaves slightly different depending on types of input args:
422
+
Inexact equality comparison ``true`` if ``abs(x-y) <= atol + rtol*max(abs(x), abs(y))``. The default ``atol`` is zero and the default ``rtol`` depends on the types of ``x`` and ``y``.
423
423
424
-
* For ``FloatingPoint`` numbers, ``isapprox`` returns ``true`` if ``abs(x-y) <= atol + rtol*max(abs(x), abs(y))``.
425
-
426
-
* For ``Integer`` and ``Rational`` numbers, ``isapprox`` returns ``true`` if ``abs(x-y) <= atol``. The `rtol` argument is ignored. If one of ``x`` and ``y`` is ``FloatingPoint``, the other is promoted, and the method above is called instead.
427
-
428
-
* For ``Complex`` numbers, the distance in the complex plane is compared, using the same criterion as above.
429
-
430
-
For default tolerance arguments, ``maxeps = max(eps(abs(x)), eps(abs(y)))``.
424
+
For real or complex floating-point values, ``rtol`` is the square root of the epsilon (precision) of ``x-y``. This corresponds to requiring equality of about half of the significand digits. For other types, ``rtol`` defaults to zer.
0 commit comments