diff --git a/matrix.py b/matrix.py new file mode 100644 index 00000000..8a05b82d --- /dev/null +++ b/matrix.py @@ -0,0 +1,12 @@ +import numpy as np + +# Edit this matrix with your coefficients and constants: +# Example for: +# 2x - 2y + z = -3 +# x + 3y - 2z = 1 +# 3x - y - z = 2 +augmented_matrix = np.array([ + [2.0, -2.0, 1.0, -3.0], + [1.0, 3.0, -2.0, 1.0], + [3.0, -1.0, -1.0, 2.0] +], dtype=float) \ No newline at end of file diff --git a/nucleof072rb/.cproject b/nucleof072rb/.cproject index 1e72a9d5..176db57b 100644 --- a/nucleof072rb/.cproject +++ b/nucleof072rb/.cproject @@ -22,7 +22,7 @@