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 N x N as input and return a new matrix where the rows and columns are reversed.
Write a method named reverse_Matrix() that accepts a 2D 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.
Sample Input
Output
|8|10|2|
-------------------
|3|14|14|
-------------------
|0|4|7|
-------------------
|7|4|0|
-------------------
|14|14|3|
-------------------
|2|10|8|
-------------------
|14|8|0|4|
-------------------------
|9|8|13|13|
-------------------------
|9|3|1|4|
-------------------------
|2|10|13|6|
-------------------------
|6|13|10|2|
-------------------------
|4|1|3|9|
-------------------------
|13|13|8|9|
-------------------------
|4|0|8|14|
-------------------------

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!