Given inputs M and N (in that order), output an MxN matrix whose entries are equal to the sum of their indices.
Example input/output pairs:
=============
Input: 1,2
Output: [2,3]
=============
Input: 2,2
Output: [2 3; 3 4]
=============
Input: 3,2
Output: [2,3; 3 4; 4 5]
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers177
Suggested Problems
-
Make an awesome ramp for a tiny motorcycle stuntman
750 Solvers
-
Vectorize the digits of an Integer
338 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
601 Solvers
-
Find the area of the four walls
292 Solvers
-
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
1972 Solvers
More from this Author23
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Marginally related: my "outer.m" on FileExchange.
Additional test cases have been added.