Add files via upload

This commit is contained in:
Visualize-ML
2022-09-29 08:25:05 -04:00
committed by GitHub
parent ac32dd7d6b
commit f2e924bf00
14 changed files with 756 additions and 49 deletions

View File

@@ -9,8 +9,8 @@
# Bk4_Ch4_15.py
import numpy as np
A = np.array([[3, 1],
[2, 4]])
A = np.array([[4, 2],
[1, 3]])
# calculate determinant of A
det_A = np.linalg.det(A)