Given n, generate the following matrix:
a = [ n n-1 n-2 ... 2 1;
n-1 n-1 n-2 ... 2 1;
n-2 n-2 n-2 ... 2 1;
. . . . . .;
. . . . . .;
. . . . . .;
2 2 2 ... 2 1;
1 1 1 ... 1 1]
Good luck!
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers125
Suggested Problems
-
All your base are belong to us
575 Solvers
-
Number of odd and even elements within matrix
159 Solvers
-
759 Solvers
-
Matlab Basics II - Extract last 3 elements of a vector
262 Solvers
-
899 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
this problem is similar with Problem 1630. ~~~~~~~ WAVE ~~~~~~~~~
Apologies! Didn't see this problem until just recently.