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
Given an interval matrix M compute an array M1, ..., Mk of interval matrices such that their union covers M but the diameter of each Mi is smaller than M.
The text was updated successfully, but these errors were encountered:
A simple way to implement this method is to use IntervalArithmetic.mince for interval boxes (just think of the IntervalMatrix as an interval box in dimension m x n ). It would be nice to do the mincing with an iterator. but that's not yet available in IA.
Given an interval matrix
M
compute an arrayM1, ..., Mk
of interval matrices such that their union coversM
but the diameter of eachMi
is smaller thanM
.The text was updated successfully, but these errors were encountered: