Skip to content

Commit

Permalink
60 / 150 : replace -= with += (-?) *
Browse files Browse the repository at this point in the history
Clean ipynb a841886
  • Loading branch information
kangwonlee authored and beachdweller committed Jun 15, 2024
1 parent b8527fe commit 7fd96f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 60_linear_algebra_2/150_Inverse_matrix.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@
"metadata": {},
"outputs": [],
"source": [
"AX22[1, :] -= 2 * AX22[0, :]\n",
"AX22[1, :] += (-2) * AX22[0, :]\n",
"\n"
]
},
Expand Down Expand Up @@ -816,7 +816,7 @@
"metadata": {},
"outputs": [],
"source": [
"AX22[0, :] -= 3 * AX22[1, :]\n",
"AX22[0, :] += (-3) * AX22[1, :]\n",
"\n"
]
},
Expand Down Expand Up @@ -1111,7 +1111,7 @@
"metadata": {},
"outputs": [],
"source": [
"AX33[2, :] -= AX33[0, :]\n",
"AX33[2, :] += (-1) * AX33[0, :]\n",
"\n"
]
},
Expand Down Expand Up @@ -1193,7 +1193,7 @@
"metadata": {},
"outputs": [],
"source": [
"AX33[2, :] -= 2 * AX33[1, :]\n",
"AX33[2, :] += (-2) * AX33[1, :]\n",
"\n"
]
},
Expand Down Expand Up @@ -1234,7 +1234,7 @@
"metadata": {},
"outputs": [],
"source": [
"AX33[0, :] -= AX33[2, :]\n",
"AX33[0, :] += (-1) * AX33[2, :]\n",
"\n"
]
},
Expand Down

0 comments on commit 7fd96f3

Please sign in to comment.