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
-
Remove any row in which a NaN appears
8770 Solvers
-
2524 Solvers
-
12095 Solvers
-
Magic is simple (for beginners)
11144 Solvers
-
Cumulative product of a vector
300 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.