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
-
3433 Solvers
-
Project Euler: Problem 10, Sum of Primes
2092 Solvers
-
Create a square matrix of multiples
498 Solvers
-
791 Solvers
-
Matlab Basics II - Create a vector with a repeated entry
252 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.