Wednesday, May 13, 2026
HomeLanguagesnumpy.rollaxis() function | Python

numpy.rollaxis() function | Python

numpy.rollaxis() function roll the specified axis backwards, until it lies in a given position.

Syntax : numpy.rollaxis(arr, axis, start=0)
Parameters :
arr : [ndarray] Input array.
axis : [int] The axis to roll backwards. The positions of the other axes do not change relative to one another.
start : [int, optional] The axis is rolled until it lies before this position. The default, 0, results in a “complete” roll.
Return : [ndarray] In earlier NumPy versions, arr is returned only if the order of the axes is changed, otherwise the input array is returned. For NumPy >= 1.10.0, a view of arr is always returned.

Code #1 :




# Python program explaining
# numpy.rollaxis() function
  
# importing numpy as geek 
import numpy as geek
  
arr = geek.ones((1, 2, 3, 4))
  
gfg = geek.rollaxis(arr, 3, 1).shape
  
print (gfg)


Output :

(1, 4, 2, 3)

 
Code #2 :




# Python program explaining
# numpy.rollaxis() function
  
# importing numpy as geek 
import numpy as geek
  
arr = geek.ones((1, 2, 3, 4))
  
gfg = geek.rollaxis(arr, 2).shape
  
print (gfg)


Output :

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

1 COMMENT

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS