GraphSolver/README.md

26 lines
606 B
Markdown
Raw Normal View History

2019-10-11 13:46:14 +00:00
# GraphSolver
2019-12-07 17:45:12 +00:00
An application for solving linear/quadratic graphs and finding the interception.
2019-12-07 17:31:21 +00:00
## Requirements file
After installing GraphSolver.zip to install requirements, run:
`pip install -r requirements.txt`
2019-12-07 17:39:08 +00:00
## Running App:
to start the app run:
`python3 app.py`
and the menu window will pop up.
There is 4 options for graph:
2019-12-07 17:44:44 +00:00
* **Linear to graph** a linear equation *y= mx + c*
2019-12-07 17:39:41 +00:00
2019-12-07 17:44:44 +00:00
* **Linear intercept** to find the interception between two lines
2019-12-07 17:39:41 +00:00
2019-12-07 17:44:44 +00:00
* **Quadratic to graph** quadratic equation *y = ax^2 + bx + c*
2019-12-07 17:39:41 +00:00
2019-12-07 17:44:44 +00:00
* **Quadratic intercept** to find the interception between two quadratic graphs