Question: Write in MATLAB code only: My Solutions > Projectile motion (vector creation and use) Consider the motion of an object modeled with ideal projectile motion
Write in MATLAB code only:



My Solutions > Projectile motion (vector creation and use) Consider the motion of an object modeled with ideal projectile motion (neglecting air resistance). V yo d The trajectory of the object can be derived from basic physics and is given by the formula: y=xtan 0 rg (Lycos at % where y is the height in meters, x is the horizontal position in meters, a the initial angle, g is the acceleration due to gravity (9.81m/s), vo is the initial velocity in m/s, and yo is the initial height in meters. The range, d, of the projectile is the total horizontal distance it travels before hitting the ground and can be determined using formula: d- Vocos (v sin + Wo sin 02 +2gyo 8 Code has already been provided to define a function named projectileTrajectory that accepts values for wo (units of meters/second), 0 (units of degrees), and yo (units of meters) as inputs and assigns them to the variables vo, theta, and yo respectively. Add commands to compute the following and assign to the indicated output variables. Generate a column vector of 200 equally spaced x-values starting at 0 and ending at d and assign to the output variable x. . Generate a column vector of 200 y-values that gives the height of the projectile corresponding to each x in the fist output and assign to the output variable y Determine the coordinates (x,y) of the peak of the trajectory (i.e. the highest value of y and the corresponding value of x) and assign as a 2-element row vector to the variable xyPeak Solve this problem using only vectorized code with no loops or if statements. Note the values of vo, theta, and yo are supplied to the function when it is run by MATLAB grader. Be sure not to overwrite these values in your code. Function Save Reset MATLAB Documentation function [x, y, xyPeak] = projectileTrajectory( ve, theta, ye ) %Enter the commands for your function in the space below. Use the variable names specified in 3 %the function definition command in line 1. Be sure to assign values to each of the output variables. Code to call your function C Reset 1 [x, y, xyPeak] = projectileTrajectory(20, 35, 5) Run Function Assessment: Run Pretest Submit > Is first output x correct for inputs (20, 35, 5)? (Pretest) > Is second output y correct for inputs (20, 35, 5)? (Pretest) > Is third output xyPeak correct for inputs (20, 35, 5)? (Pretest) Are all three outputs correct for new input values? > Does solution use vectorized code free of for, while, and if commands? (Pretest) 2020 The MathWorks, Inc
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
