Problem 794. Matrix with different incremental runs

Created by Aurelien Queffurust

Given a vector of positive integers

a = [ 3 2 4 ];

create the matrix where the i th column contains the vector 1:a(i) possibly padded with zeros:

b = [ 1 1 1
      2 2 2
      3 0 3
      0 0 4 ];

Problem Group

25 solvers submitted 43 solutions (1.72 solutions/solver).

Problem Comments