https://github.com/simpleart/pymath-interval
The purpose of this Python namespace subpackage is to provide pure-python implementations of precise interval arithmetic.
https://github.com/simpleart/pymath-interval
numerical-analysis numerical-methods python
Last synced: about 1 year ago
JSON representation
The purpose of this Python namespace subpackage is to provide pure-python implementations of precise interval arithmetic.
- Host: GitHub
- URL: https://github.com/simpleart/pymath-interval
- Owner: SimpleArt
- License: mit
- Created: 2022-08-22T02:35:27.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-03T18:28:00.000Z (over 2 years ago)
- Last Synced: 2025-01-26T14:23:27.216Z (over 1 year ago)
- Topics: numerical-analysis, numerical-methods, python
- Language: Python
- Homepage:
- Size: 84 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# pymath-interval
The purpose of this Python namespace subpackage is to provide pure-python implementations of precise interval arithmetic.
Learn more about interval arithmetic on [Wikipedia](https://en.wikipedia.org/wiki/Interval_arithmetic).
## Usage and Examples
See [Usage](https://github.com/SimpleArt/pymath-interval/blob/main/USAGE.md) for walkthroughs and examples.
## Installation
Installing using pip:
```
>>> pip install pymath-interval
```
Installing using virtual-environment(recommended):
```
>>> conda create -n myEnv python=3.12 anaconda
>>> conda activate myEnv
>>> pip install pymath-interval
```
You can find the project on PyPi [here](https://pypi.org/project/pymath-interval/)
## Contributing
We welcome community contributions and pull requests. See [Contributing](https://github.com/SimpleArt/pymath-interval/blob/main/CONTRIBUTING.md) for information on how to set up a development environment and submit code.
## Licence
[MIT Licence](LICENCE.txt)