Sum My Indices - MATLAB Cody - MATLAB Central

Problem 42519. Sum My Indices

Difficulty:Rate

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

51.69% Correct | 48.31% Incorrect
Last Solution submitted on May 02, 2025

Problem Comments

Solution Comments

Show comments
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
0
1

Problem Recent Solvers167

Suggested Problems

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!
Go to top of page