A mathmatical library with a cli app.
Go to file
array-in-a-matrix 83505d30ae too abusious 2021-06-14 22:53:44 -04:00
.gitignore makefile added 2021-06-14 22:19:14 -04:00
LICENSE Add files via upload 2021-04-11 22:29:40 -04:00
README.md too abusious 2021-06-14 22:53:44 -04:00
formulas.h area of tri rec and circ 2021-06-14 22:49:46 -04:00
main.c entry added 2021-06-14 22:50:11 -04:00
makefile makefile added 2021-06-14 22:19:14 -04:00
matrices.h changed ints to doubles [needs review] 2021-04-27 03:18:35 -04:00

README.md

cli-calculator

Calculator with various formulas for common and uncommon problems.


Goal

My goal for this project is to write an open sourced mathmatical library for C along with a cli math calculator.


List of calculators

  • Hypotenuse calculator (a²+b²=c²)
  • Circumference of a Circle
  • Area of a circle (πr²)
  • Area of a Triangle
  • Area of a Rectangle
  • Matrix arithmetics (2-D arrays)
    • Determinant of 2*2 matrix
    • Scalar multiplication
    • Matrix addition

Future additions

  • Matrix arithmetics (2-D arrays)
    • Matrix multiplication
    • Determinant of n*n matrix
    • Matrix support for none integer numbers