For a given input n, make an n by n identity matrix that contains the elements 1:n along its diagonal. For example, if input=5:
output = [1 0 0 0 0;
0 2 0 0 0;
0 0 3 0 0;
0 0 0 4 0;
0 0 0 0 5]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers123
Suggested Problems
-
Project Euler: Problem 10, Sum of Primes
2090 Solvers
-
Compute a dot product of two vectors x and y
1050 Solvers
-
Output any real number that is neither positive nor negative
409 Solvers
-
7972 Solvers
-
find the mean of all elements in a matrix
129 Solvers
More from this Author7
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This problem's title and description were cleaned up and additional test cases were added.