Write a NumPy program to convert (in sequence depth wise (along third axis)) two 1-D arrays into a 2-D array. Sample array: (10,20,30), (40,50,60)
- برمجة بايثون
- 2021-09-12
- mhanasmh00489829403
الأجوبة
import numpy as np
a = np.array([[10],[20],[30]])
b = np.array([[40],[50],[60]])
c = np.dstack((a, b))
print(c)
Sample Output:
[[[10 40]]
[[20 50]]
[[30 60]]]أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال