Add files via upload

This commit is contained in:
Visualize-ML
2022-09-23 07:01:43 -04:00
committed by GitHub
parent c9e853a4aa
commit 90b236484f
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ D,V = np.linalg.eig(A)
D = np.diag(D)
st.latex(r'''A = \begin{bmatrix}%s & %s\\%s & %s\end{bmatrix}''' %(a, b, b, c))
st.latex(r'''A = V \Lambda V^{T}''')
st.latex(bmatrix(A) + '=' +
bmatrix(np.around(V, decimals=3)) + '@' +
bmatrix(np.around(D, decimals=3)) + '@' +