Problem 2590. Create an anti-identity matrix

Create an anti-identity matrix of given dimension.

Examples

 n = 2 
 A = [0 1; 1 0]
 n = 3
 A = [0 0 1; 0 1 0; 1 0 0]

Solution Stats

65.28% Correct | 34.72% Incorrect
Last Solution submitted on May 24, 2023

Solution Comments

Show comments

Problem Recent Solvers177

Suggested Problems

More from this Author70

Problem Tags

Community Treasure Hunt

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

Start Hunting!