Friday, July 11, 2025
HomeLanguagesnumpy.ma.row_stack() in Python

numpy.ma.row_stack() in Python

numpy.ma.row_stack() : This function helps stacking arrays row wise in sequence vertically manner.

Parameters :

tup : sequence of ndarrays. 1D arrays must have same length, arrays must have the same shape along with all the axis.

Result :

Row-wise stacked arrays

Code #1: Explaining row_stack()




# importing libraries
import numpy as np
  
# row_stacking array
a = np.array([1, 2, 3])
arr = np.ma.row_stack (a)
  
print ("arr : \n", arr)
  
# row_stacking array
b = np.array([[1], [2], [3]])
arr1 = np.ma.row_stack (b)
  
print ("\narr1 : \n", arr1)


Output :

arr : 
 [[1]
 [2]
 [3]]

arr1 : 
 [[1]
 [2]
 [3]]

 
Code #2: Error generated with row_stack()




# importing libraries
import numpy as np
  
# row_stacking array
  
b = np.array([[1, 1], [2], [3]])
arr1 = np.ma.row_stack (b)
  
print ("\narr1 : \n", arr1)


Output :

ValueError: all the input array dimensions except for the concatenation axis must match exactly.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32132 POSTS0 COMMENTS
Milvus
66 POSTS0 COMMENTS
Nango Kala
6516 POSTS0 COMMENTS
Nicole Veronica
11663 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11720 POSTS0 COMMENTS
Shaida Kate Naidoo
6608 POSTS0 COMMENTS
Ted Musemwa
6873 POSTS0 COMMENTS
Thapelo Manthata
6570 POSTS0 COMMENTS
Umr Jansen
6561 POSTS0 COMMENTS