Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 480 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 480 Bytes

matrixplusplus

matrixplusplus is a 2D matrix library written in C++. Matrices have 1 based indexing and values are stored as doubles.

Functionalities include:

  • Creating and displaying a matrix
  • Editing a matrix
  • Adding and multiplying matrices
  • Finding the determinant of a matrix
  • Finding the row echelon form of a matrix
  • Finding the reduced row echelon form of a matrix
  • Finding rank and nullity of a matrix

Please see demo.cpp for how to use this library. Enjoy!