Create a square matrix, M, which should be populated as follows:
M = [ n^2 n * (n-1) n * (n-2) ... n * 2 n * 1;
(n-1)*n (n-1)*(n-1) (n-1)*(n-2) ... (n-1)*2 (n-1)*1;
(n-2)*n (n-2)*(n-1) (n-2)*(n-2) ... (n-2)*2 (n-2)*1;
. . . . . . ;
. . . . . . ;
. . . . . . ;
2 * n 2 * (n-1) 2 * (n-2) ... 2 * 2 2 * 1;
1 * n 1 * (n-1) 1 * (n-2) ... 1 * 2 1 * 1]
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers140
Suggested Problems
-
Project Euler: Problem 9, Pythagorean numbers
1385 Solvers
-
Flip the main diagonal of a matrix
904 Solvers
-
136 Solvers
-
Write a function man that takes a row vector v and returns a matrix H as follows..
646 Solvers
-
1697 Solvers
More from this Author37
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
6775745764
The problem description and test suite have been improved.