Question: Matrix Manipulation: You are participating in a coding competition focused on matrix manipulation, and your task is to develop a Python function that reverses the
Matrix Manipulation:
You are participating in a coding competition focused on matrix manipulation, and your task is to develop a Python function that reverses the rows and columns of a square matrix. Your function should take a square matrix of size as input and return a new matrix where the rows and columns are reversed.
Write a method named reverseMatrix that accepts a D numpy array representing the matrix as input and returns a new matrix with reversed rows and columns. The function should adhere to the following specifications:
The input matrix will be a square matrix, meaning it will have the same number of rows and columns.
The function should not modify the original matrix; instead, it should create and return a new matrix.
The new matrix should have the same size as the input matrix.
The rows and columns of the new matrix should be in reverse order compared to the input matrix.
tableSample Input,Output
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
