Skip to content

Commit b7314c7

Browse files
committed
cleanup 11_LA_QR for fall 2024
1 parent 602aa3e commit b7314c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

11_LA_QR.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2652,7 +2652,7 @@
26522652
"print(A)\n",
26532653
"for i in range(MAX_STEPS):\n",
26542654
" Q, R = numpy.linalg.qr(A)\n",
2655-
" A = numpy.dot(R, Q)\n",
2655+
" A = numpy.dot(R, Q) \n",
26562656
" print()\n",
26572657
" print(\"A({}) =\".format(i))\n",
26582658
" print(A)"

0 commit comments

Comments
 (0)