Consider the motion of an object modeled with ideal projectile motion (neglecting air resistance). y=xtan 0- d= The trajectory of the object can be derived from basic physics and is given by the formula: 1 x²g 2 (Vo cos 0)² + Yo Vocos ( 8 Yo V (vo sin 0 + √(vo sin 0)² + 2gyo) V 0 where y is the height in meters, x is the horizontal position in meters, is the initial angle, g is the acceleration due to gravity (9.81m/s²), vo is the initial elocity 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 the formula: d Code has already been provided to define a function named projectileTrajectory that accepts values for vo (units of meters/second), 0 (units of degrees), and yo (units of meters) as inputs and assigns them to the variables ve, 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 ve, theta, and ye are supplied to the function when it is run by MATLAB grader. Be sure not to overwrite these values in your code. Function > Save C Reset MATLAB Documentation
Consider the motion of an object modeled with ideal projectile motion (neglecting air resistance). y=xtan 0- d= The trajectory of the object can be derived from basic physics and is given by the formula: 1 x²g 2 (Vo cos 0)² + Yo Vocos ( 8 Yo V (vo sin 0 + √(vo sin 0)² + 2gyo) V 0 where y is the height in meters, x is the horizontal position in meters, is the initial angle, g is the acceleration due to gravity (9.81m/s²), vo is the initial elocity 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 the formula: d Code has already been provided to define a function named projectileTrajectory that accepts values for vo (units of meters/second), 0 (units of degrees), and yo (units of meters) as inputs and assigns them to the variables ve, 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 ve, theta, and ye are supplied to the function when it is run by MATLAB grader. Be sure not to overwrite these values in your code. Function > Save C Reset MATLAB Documentation
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Use vectorized code free of for, while, and if commands
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education