% Kathleen Williams % Matlab 16 % Student ID #0194633 x = simout.signals.values(:,1); y = simout.signals.values(:,2); subplot(2,1,1),plot(tout,x) title('X') xlabel('Time in seconds') ylabel('X') grid subplot(2,1,2),plot(tout,y) title('Y') xlabel('Time in seconds') ylabel('Y') grid