Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. clear
  2. clc
  3.  
  4. Yo=input('Provide Launch Height: ');
  5. Vo=input('Provide Initial Velocity: ');
  6. fprintf('\n');
  7. theta=[10:10:80];
  8. n=1;
  9. while n<=8
  10. fire_projectile(Vo, Yo, theta(n));
  11. fprintf('\n');
  12. n=n+1;
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement