The Wayback Machine - https://web.archive.org/web/20230512160512/https://www.geeksforgeeks.org/python-numpy-dstack-method/
Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python | Numpy dstack() method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

With the help of numpy.dstack() method, we can get the combined array index by index and store like a stack by using numpy.dstack() method.

Syntax : numpy.dstack((array1, array2))

Return : Return combined array index by index.

Example #1 :
In this example we can see that by using numpy.dstack() method, we are able to get the combined array in a stack index by index.




# import numpy
import numpy as np
  
gfg1 = np.array([1, 2, 3])
gfg2 = np.array([4, 5, 6])
  
# using numpy.dstack() method
print(np.dstack((gfg1, gfg2)))

Output :

[[[1 4]
[2 5]
[3 6]]]

Example #2 :




# import numpy
import numpy as np
  
gfg1 = np.array([[10], [2], [13]])
gfg2 = np.array([[41], [55], [6]])
  
# using numpy.dstack() method
print(np.dstack((gfg1, gfg2)))

Output :

[[[10 41]]

[[ 2 55]]

[[13 6]]]

My Personal Notes arrow_drop_up
Last Updated : 19 Sep, 2019
Like Article
Save Article
Similar Reads
Related Tutorials