回答編集履歴
1
いらない部分削除
test
CHANGED
@@ -18,9 +18,7 @@
|
|
18
18
|
|
19
19
|
def M(x):
|
20
20
|
|
21
|
-
x = x.astype(np.float64)
|
22
|
-
|
23
|
-
M = np.array([[x[0], 3],[4, -1]])
|
21
|
+
M = np.array([[x[0], 3],[4, -1]]) #ここを変更
|
24
22
|
|
25
23
|
return LA.det(M)
|
26
24
|
|