A mathmatical library with a cli app.
Go to file
superdimensional 818feb115d writing exp func is dumb use pow() from math.h 2021-04-19 16:33:36 -04:00
.gitignore added scalar matrix multiplication 2021-04-18 22:28:42 -04:00
LICENSE Add files via upload 2021-04-11 22:29:40 -04:00
README.md added text 2021-04-19 15:50:01 -04:00
formulas.h writing exp func is dumb use pow() from math.h 2021-04-19 16:33:36 -04:00
main.c writing exp func is dumb use pow() from math.h 2021-04-19 16:33:36 -04:00
matrices.h 2*2 matrix determinant calculator 2021-04-19 02:06:46 -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²)
  • Area of a circle (πr²)
  • 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
  • Derivative
  • Integral
  • Area
    • Area of a triangle
    • Area of a quadralateral
  • Peremeter
    • Peremeter of a triangle
    • Peremeter of a quadralateral
    • Circumference of a circle