質問編集履歴

1

プログラムを実行できるものに修正しました

2021/01/12 07:52

投稿

redcatML
redcatML

スコア26

test CHANGED
File without changes
test CHANGED
@@ -12,9 +12,9 @@
12
12
 
13
13
 
14
14
 
15
- a = np.arrange(100 * 400).reshape(100,8*20*20)
15
+ a = np.arange(100 * 8*20*20).reshape(100,8*20*20)
16
16
 
17
- b = np.arrange(100 * 8).reshape(100,8)
17
+ b = np.arange(100 * 8).reshape(100,8)
18
18
 
19
19
  c = np.zeros(100)
20
20
 
@@ -24,4 +24,8 @@
24
24
 
25
25
  c[i] += np.dot(a[i,8*j:8*(j+1)],b[i,:])
26
26
 
27
+ print(c)
28
+
29
+
30
+
27
31
  ```