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

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

Solution Stats

86 Solutions

53 Solvers

Last Solution submitted on Jan 23, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...