Flipping a Matrix - MATLAB Cody - MATLAB Central

Problem 43653. Flipping a Matrix

Difficulty:Rate

Flipping matrix up and down.

If a central row is exists, leave it, and flip remaining rows.

Example

 Mat = magic(3)
 Mat = [8     1     6;
        3     5     7;
        4     9     2]
 -> A = [4     9     2;
         3     5     7;
         8     1     6]

Solution Stats

65.36% Correct | 34.64% Incorrect
Last Solution submitted on May 06, 2025

Problem Comments

Solution Comments

Show comments
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
1
3

Problem Recent Solvers173

Suggested Problems

More from this Author1

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page