Generate this matrix - MATLAB Cody - MATLAB Central

Problem 2064. Generate this matrix

Difficulty:Rate

Generate the following matrix.

n = 2;
out = [-4    -3    -2    -1     0
       -3    -2    -1     0     1
       -2    -1     0     1     2
       -1     0     1     2     3
        0     1     2     3     4];
n = 5;
out = [-10    -9    -8    -7    -6    -5    -4    -3    -2    -1     0
        -9    -8    -7    -6    -5    -4    -3    -2    -1     0     1
        -8    -7    -6    -5    -4    -3    -2    -1     0     1     2
        -7    -6    -5    -4    -3    -2    -1     0     1     2     3
        -6    -5    -4    -3    -2    -1     0     1     2     3     4
        -5    -4    -3    -2    -1     0     1     2     3     4     5
        -4    -3    -2    -1     0     1     2     3     4     5     6
        -3    -2    -1     0     1     2     3     4     5     6     7
        -2    -1     0     1     2     3     4     5     6     7     8
        -1     0     1     2     3     4     5     6     7     8     9
         0     1     2     3     4     5     6     7     8     9    10];

Solution Stats

57.28% Correct | 42.72% Incorrect
Last Solution submitted on Mar 15, 2025

Problem Comments

Solution Comments

Show comments

Group

Project Euler II Image
Project Euler II
  • 12 Problems
  • 51 Finishers

Problem Recent Solvers666

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