Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 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.
Sample Input
Output
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started