% % Matlab 6 : script de test % function shoot() close all; clear all; figure; alpha= 850; M = 100; [tf,v0,n] = shoot(alpha,M); fprintf('\n === Time and velocity are %14.7e %14.7e === \n',tf,v0); xlabel('distance [m]'); ylabel('hauteur [m]'); axis equal end