Given a vector v=[1 3 6 9 11], turn it into a matrix 'ramp' like so:

m=[1 3 6 9 11; 0 1 3 6 9; 0 0 1 3 6; 0 0 0 1 3; 0 0 0 0 1]

Solution Stats

102 Solutions

65 Solvers

Last Solution submitted on Mar 16, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...