Question: def reverse _ Matrix ( matrix ) : #TO DO matrix = np . array ( [ [ 1 4 , 8 , 0 ,

def reverse_Matrix(matrix):
#TO DO
matrix = np.array([
[14,8,0,4],
[9,8,13,13],
[9,3,1,4],
[2,10,13,6]
])
print_matrix(matrix)
reversed_matrix = reverse_Matrix(matrix)
print_matrix(reversed_matrix)
#This should print
#|6|13|10|2|
#-------------------------
#|4|1|3|9|
#-------------------------
#|13|13|8|9|
#-------------------------
#|4|0|8|14|
#-------------------------sol
 def reverse_Matrix(matrix): #TO DO matrix = np.array([ [14,8,0,4], [9,8,13,13], [9,3,1,4], [2,10,13,6]

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!