You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: chapters/computational_mathematics/matrix_methods/gaussian_elimination.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -186,7 +186,7 @@ $$
186
186
187
187
1. Swap the row with the highest valued element with the `col`th row.
188
188
2. For all remaining rows, find a fraction that corresponds to the ratio of the lower value in that column to the central pivot \(the one you swapped to the top\)
189
-
3. Set all values in the corresponding rows to be the value they were before - the top row \* the fraction. This is essentially performing move 3 from above, except with an optimal multiplicative factor.
189
+
3. Set all values in the corresponding rows to be the value they were before $$-$$ the top row $$\times$$ the fraction. This is essentially performing move 3 from above, except with an optimal multiplicative factor.
190
190
4. Set the value of that row's pivot column to 0.
191
191
192
192
ADD VISUALIZATION OF ABOVE
@@ -209,7 +209,7 @@ for k = 1:min(rows,cols):
209
209
end
210
210
211
211
# Step 2: swap row with highest value for that column to the top
0 commit comments