Skip to content

Commit b5b238f

Browse files
committedAug 3, 2024
update
1 parent 2ab7929 commit b5b238f

9 files changed

+1134
-3570
lines changed
 

‎notebooks/Chapter 1 - Linear Equation System.ipynb

+3-2
Original file line numberDiff line numberDiff line change
@@ -1116,10 +1116,11 @@
11161116
"metadata": {},
11171117
"source": [
11181118
"Now you know the trick, try another 5 points: $(1,2)$, $(2,5)$, $(3,8)$, $(4,6)$, $(5, 9)$. And polynomial form is \n",
1119+
"$$\n",
11191120
"\\begin{align}\n",
11201121
"y=a_0+a_1x+a_2x^2+a_3x^3+a_4x^4\n",
11211122
"\\end{align}\n",
1122-
"\n",
1123+
"$$\n",
11231124
"The augmented matrix is"
11241125
]
11251126
},
@@ -1256,7 +1257,7 @@
12561257
}
12571258
],
12581259
"source": [
1259-
"x = np.linalg.solve(A, b);x"
1260+
"x = np.linalg.solve(A, b); x"
12601261
]
12611262
},
12621263
{

‎notebooks/Chapter 19 - Multivariate Normal Distribution.ipynb

+163-2,466
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Failed to load comments.