CalcMate* is a Python-based calculator with a graphical user interface (GUI) built using tkinter. It lets users input mathematical functions and perform numerical integration with ease.
Build/
├── assets/
│ └── frame0/
│ └── (image assets)
├── gui.py
├── calculations.py
└── README.md
- Input mathematical functions using Python syntax (e.g.,
x**3-3*x) - Calculate numerical integrals using scipy.integrate.quad()
- Display integration results
- Modern and user-friendly interface
- Python 3.6 or higher
- tkinter (usually comes with Python)
- pyglet
- sympy
- scipy
- numpy
-
Clone this repository:
https://github.com/Tetsuuya/CalcMate.git cd calculator -
Install the required packages:
pip install -r requirements.txt -
Run
- Enter a mathematical function in the input field using Python syntax (e.g.,
x**3-3*x) - Enter the lower and upper limits for integration
- Click the "Solve" button to compute the integral
- The result will be displayed in the "Result for numerical integration" field
