We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58d36d0 commit f1d2a8cCopy full SHA for f1d2a8c
linear_algebra/src/gaussian_elimination_pivoting.py
@@ -37,7 +37,7 @@ def solve_linear_system(matrix: np.ndarray) -> np.ndarray:
37
x_lst: list[float] = []
38
39
if num_of_rows != num_of_columns:
40
- raise ValueError("Matrix is not square")
+ raise ValueError("Matrix is not square")
41
42
for column_num in range(num_of_rows):
43
# Lead element search
0 commit comments