% Basic simulation in Matlab using ode45 with 2 D.O.F % initialize values x0 = 0; y0 = 10; % initial x & y position of particle [m] vx0 = 5; vy0 = 10; % initial x & y velocities of particle [m/s] ...