Problem 497. Make an awesome ramp for a tiny motorcycle stuntman

Created by Stephen

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

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

That way a tiny motorcycle stuntman can follow the trace and jump over 9 school buses safely.

Tags

Problem Group

54 solvers submitted 91 solutions (1.69 solutions/solver).

Problem Comments

Solution Comments