Metadata-Version: 2.1
Name: re_matrix
Version: 0.0.7
Summary: Simple python package
Author: Charlie
Author-email: <charlie@thatcharlie.com>
Keywords: python,matrices,row reduction,linear algebra
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown

# RowReducer
This library row takes a matrix and row reduces it. For example, the following code reduces an example matrix.

```py

from base_re_matrix.re_matrix import row_reducer

example_matrix = [[8, 2, 3, 4],
                  [5, 3, 7, 8],
                  [7, 9, 2, 5]]
reduced_matrix = row_reducer.get_row_reduced_matrix(example_matrix)
row_reducer.pretty_print_matrix(reduced_matrix)
```

