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)
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]]]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer