Problem 1171. matrix of natural number

Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 resides seially as shown in the examples below.

Examples:

 Input  n = 3
 Output a = [ 1 2 3
              4 5 6
              7 8 9 ]
 Input  n = 4
 Output a = [ 1     2     3     4
              5     6     7     8
              9    10    11    12
              13   14    15    16]

Solution Stats

53.09% Correct | 46.91% Incorrect
Last Solution submitted on Oct 24, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers269

Suggested Problems

More from this Author1

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!