Problem 1926. Unit Matrix

Given n, you should return an n-by-n unit matrix.
Example:
If input is n=2 then
A = [ 1 0
0 1 ]
If input is n=4 then
A = [ 1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1 ]

Solution Stats

79.75% Correct | 20.25% Incorrect
Last Solution submitted on Mar 21, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers475

Suggested Problems

Community Treasure Hunt

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

Start Hunting!