https://github.com/anirban166/computex
A C++ based graph plotter and a Java based ADT polynomial operations calculator.
https://github.com/anirban166/computex
Last synced: 6 months ago
JSON representation
A C++ based graph plotter and a Java based ADT polynomial operations calculator.
- Host: GitHub
- URL: https://github.com/anirban166/computex
- Owner: Anirban166
- License: mit
- Created: 2019-09-16T06:28:58.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-15T17:07:07.000Z (over 5 years ago)
- Last Synced: 2025-03-25T05:17:32.044Z (7 months ago)
- Language: C++
- Homepage:
- Size: 800 KB
- Stars: 12
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Abstract
A mathematical-term string parser is used for the graph plotter which handles conversions from infix to postfix and eventually parses an equation into a singular value for plotting. It supports regular arithmetic operators to go with trigonometric equations/terms, including arc/inverse and hyperbolic ones. Qt library's Qtcreator is used to frame the application GUI.For the ADT/univariate (single variable equation) polynomial operations calculator, each term is represented as a link list node of co-efficient and exponent, (with the former being a double and the later an integer) whereby the arithmetic operations are performed by functions in the abstract class PolynomialOperations. FXML is used for the GUI here.
---
## Runscreens
- [Graph plotter for mathematical terms](https://github.com/Anirban166/Computex#graph-plotter)
- [Calculator for ADT polynomial operations](https://github.com/Anirban166/Computex#polynomial-operations-calculator)---
Graph Plotter
---![]()
---
Polynomial Operations Calculator
---![]()