Skip to content

Latest commit

 

History

History
16 lines (16 loc) · 480 Bytes

README.md

File metadata and controls

16 lines (16 loc) · 480 Bytes

Matrix

A naïve implementation of a matrix class with various matrix operations

Goal

To create a Matrix class that supports basic matrix operations with simple and efficient implementations.

Functionality

Operations/Properties

  • REF(Row Echelon Form)
  • RREF(Reduced Row Echelon Form)
  • Determinant
  • Inverse
  • Transpose
  • Matrix Addition, Subtraction
  • Matrix Multiplication
  • Solving Linear Systems

Implementation Details

See Wiki