Method on @infsup: rdivide (X, Y)
Operator on @infsup: X ./ Y

Divide all numbers of interval X by all numbers of Y.

For X = 1 compute the reciprocal of Y. Thus this function can compute recip as defined by IEEE Std 1788-2015.

Accuracy: The result is a tight enclosure.

x = infsup (2, 3);
y = infsup (1, 2);
x ./ y
  ⇒ ans = [1, 3]

See also: @infsup/times.

Package: interval