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 ];
nice
3308 Solvers
415 Solvers
367 Solvers
255 Solvers
Flip the vector from right to left
744 Solvers