Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 608 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 608 Bytes

Matrix-Calculator

A simple matrix calculator coded in C++. Looking forward to expanding operations by designing new algorithms for the more complex matrix operations. This tool is unique because it elegantly outputs matrices in standard format. Currently supports matrices of up to 10x10 size.

Supported Matrix Operations

  • Matrix Scalar Multiplication
  • Matrix Addition
  • Matrix Multiplication
  • Matrix Transpose
  • Determine the RREF of a Matrix (Reduced Row Echelon Form)
  • Find the Determinant of a Matrix [IN PROGRESS]
  • Inverse a Matrix [IN PROGRESS]
  • Feel free to suggest more algorithms!