cli-calculator/README.md

33 lines
663 B
Markdown
Raw Permalink Normal View History

2021-04-19 02:29:51 -04:00
# cli-calculator
Calculator with various formulas for common and uncommon problems.
---
2021-04-19 15:13:23 -04:00
## Goal
2021-04-19 03:18:50 -04:00
2021-04-19 15:50:01 -04:00
My goal for this project is to write an open sourced mathmatical library for C along with a cli math calculator.
2021-04-19 02:29:51 -04:00
---
2021-04-19 15:13:23 -04:00
## List of calculators
2021-04-19 03:18:50 -04:00
2021-04-19 02:29:51 -04:00
- Hypotenuse calculator (a²+b²=c²)
2021-06-14 22:49:46 -04:00
- Circumference of a Circle
2021-04-19 02:29:51 -04:00
- Area of a circle (πr²)
2021-06-14 22:49:46 -04:00
- Area of a Triangle
- Area of a Rectangle
2021-04-19 03:18:50 -04:00
- Matrix arithmetics (2-D arrays)
2021-04-19 02:29:51 -04:00
- Determinant of 2*2 matrix
- Scalar multiplication
2021-04-19 15:13:23 -04:00
- Matrix addition
---
2021-04-19 15:13:41 -04:00
## Future additions
2021-04-19 15:13:23 -04:00
- Matrix arithmetics (2-D arrays)
- Matrix multiplication
- Determinant of n*n matrix
- Matrix support for none integer numbers