Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andres15alvarez/numericalcalculator
Calculator of roots of equations and system of linear algebraic equations.
https://github.com/andres15alvarez/numericalcalculator
numerical-methods numpy python scipy
Last synced: 3 days ago
JSON representation
Calculator of roots of equations and system of linear algebraic equations.
- Host: GitHub
- URL: https://github.com/andres15alvarez/numericalcalculator
- Owner: andres15alvarez
- License: mit
- Created: 2024-03-28T17:50:33.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-13T20:17:18.000Z (7 months ago)
- Last Synced: 2024-04-14T00:22:44.016Z (7 months ago)
- Topics: numerical-methods, numpy, python, scipy
- Language: Python
- Homepage: https://numericalcalculator.onrender.com/
- Size: 604 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Numerical Calculator
Calculator of roots of equations and systems of linear algebraic equations made with Python## How to install the project
the following softwares are necessary to run the project:
- Python 3.11
- Pip
- VirtualenvOnce all the software are installed you need to create a virtual environment to install the python's libraries.
```
virtualenv venv -p python3.11
```Activate the virtual environment:
```
source venv/bin/activate
```Then install the mathematicals and graphicals libraries:
```
pip install -r requirements.txt
```To run the program execute the followin command:
```
uvicorn main:app
```