pyinterval icon indicating copy to clipboard operation
pyinterval copied to clipboard

PyInterval — Interval arithmetic in Python

Results 17 pyinterval issues
Sort by recently updated
recently updated
newest added

Hello, I am unable to import interval, inf, imath from interval. ![interval](https://github.com/taschini/pyinterval/assets/90715218/96a62c8a-a691-45c9-86f5-9034f7299bd3) ![interval2](https://github.com/taschini/pyinterval/assets/90715218/cfca1fb0-a7c3-4ab3-8ffe-500f1b39324b) ![interval43](https://github.com/taschini/pyinterval/assets/90715218/22cf6507-7c82-49cd-8a6a-30e9fa36ee4c) Could you please suggest a course of action to resolve this error. Sincerely, Ankit Chakraborty

Hi, This might not be the right place for this question since it concerns `pycrlibm`. I asked the same question at https://github.com/taschini/pycrlibm/issues but there is more activity in this project...

Hi, I don't know if it's already existent, but I would like to calculate the difference between two intervals, like that : i1 = interval([3,4], [7,9]) i2 = interval([0,10]) foo(i1,...

It would be nice to have identity elements for operations on intervals. For example, "empty interval" would be the identity element for Union operation. "Full" would be identity element for...

I don't find the method to creat a open interval in pyinterval,have you any suggestion?

This would allow for specifying "grids" in N dimensions.

Of course it's not the right place to solve this, but it would be kind of you to help to solve this: _Cannot load crlibm extension. The imath functions will...

I've got pairs of years that look like this `timespans = [[1200, 1400], [150, 230]]` and can't see how to generate a multi-component interval looking like this via iteration: `interval([150.0,...

Is there a way to take the complement of an interval object? Strictly speaking I think it's not possible since you define all your intervals to be unions of closed...

Raising an interval X to the integer power zero should give the interval [1, 1] provided that X is not empty, even if X contains zero. However, the current version...