Python 中有_rational_ 区间算术的实现吗?
Python 中是否有有理区间算术的实现? 此使用浮点数,而不是有理数。
如果没有,Python 中是否有包含 ±∞ 的有理数实现?
Is there an implementation of rational interval arithmetic in Python? This uses floats, not rationals.
If not, is there any implementation of rationals in Python that includes ±∞ ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Sympy 具有 间隔、有理数和无穷大。 Interval 类是 Set 类的子类。
Sympy has intervals, rational numbers, and infinity. The Interval class is a subclass of the Set class.
PyInterval 现在在 Python 中具有有理区间算术功能。
来自 PyInterval 文档:
PyInterval now has rational interval arithmetic in Python feature.
From PyInterval Docs: