質問編集履歴
3
文章修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
|
19
|
+
大変お手数ですが、ご回答頂けると助かります。
|
20
20
|
|
21
21
|
|
22
22
|
|
2
ソース修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,9 +40,9 @@
|
|
40
40
|
|
41
41
|
np.random.seed(0)
|
42
42
|
|
43
|
-
a = np.round(np.random.rand(
|
43
|
+
a = np.round(np.random.rand(50000, 50000) * 10)
|
44
44
|
|
45
|
-
b = np.round(np.random.rand(
|
45
|
+
b = np.round(np.random.rand(50000, 50000) * 10)
|
46
46
|
|
47
47
|
|
48
48
|
|
@@ -64,9 +64,9 @@
|
|
64
64
|
|
65
65
|
np.random.seed(0)
|
66
66
|
|
67
|
-
a = np.round(np.random.rand(
|
67
|
+
a = np.round(np.random.rand(50000, 50000) * 10)
|
68
68
|
|
69
|
-
b = np.round(np.random.rand(
|
69
|
+
b = np.round(np.random.rand(50000, 50000) * 10)
|
70
70
|
|
71
71
|
|
72
72
|
|
1
文章修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -54,7 +54,7 @@
|
|
54
54
|
|
55
55
|
# サンプルコード(OpenCV)
|
56
56
|
|
57
|
-
```
|
57
|
+
```Python
|
58
58
|
|
59
59
|
import numpy as np
|
60
60
|
|