Skip to content

Compute the inverse of a matrix using the Gauss-Jordan method.

Notifications You must be signed in to change notification settings

derekharrison/matrix-inverse-gj

Repository files navigation

matrix-inverse-gj

The Gauss-Jordan method is implemented with row sorting instead of row swapping to compute the inverse of a matrix in O(n^3) time. Computation has been validated through test-cases and comparison with other methods implementing the Gauss-Jordan method.