Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

NumPy rot90 Example Rotating four times

# welcome to softhunt.net
# Python Program illustrating
# numpy.rot90() method

import numpy as np

array = np.arange(9).reshape(3, 3)
print("Original array : 
", array)


# # Rotating array 4 times : Returns same original array
print("
Array being rotated 4 times : 
", np.rot90(array, 4))
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #NumPy #Example #Rotating #times
ADD COMMENT
Topic
Name
5+5 =