/linear_system_solver

Primary LanguagePythonApache License 2.0Apache-2.0

Matrix Linear System Solver

Not much here, just a simple Python linear equation solver. Matrix in, solution out

Input:

1 2 3
4 5 6
end

Output

| 1 2 :3 |
| 4 5 :6 |

|  1  0 :-1 |
|  0  1 : 2 |