This commit is contained in:
2024-10-14 22:10:11 +08:00
parent 1b63909ca8
commit 34963f08ad
+14
View File
@@ -0,0 +1,14 @@
import numpy as np
a = np.arange(2 * 3 * 4).reshape(2, 3, 4)
b = np.arange(12).reshape(2, 6)
c = a + b.reshape(2, 3, 4)
c_flattened = c.flatten(copy=True)
print("a\n", a)
print("b\n", b)
print("c\n", c)
print("c_flattened\n", c_flattened)