EBK THINKING LIKE AN ENGINEER
EBK THINKING LIKE AN ENGINEER
4th Edition
ISBN: 8220103633512
Author: OHLAND
Publisher: PEARSON
bartleby

Concept explainers

bartleby

Videos

Textbook Question
Book Icon
Chapter 18, Problem 18RQ

Your function should use polyfit to determine the parameters of the boundary lines (assumed linear). The endpoints of the lines are noted or the graph. You should NOT calculate the slopes and intercepts manually.

You are part of a team designing a game to hit a target A “gun” will fire a short pulse of light at a light-sensitive screen, and the coordinates of the location where the pulse hits the screen will be captured in the variables X (horizontal) and Y (vertical). The values in X and Y will be between –4 and 4 unless the player misses the screen altogether, in which case both X and Y contain –99. The software and hardware to accomplish all of the above are being designed by more experienced team members.

Chapter 18, Problem 18RQ, Your function should use polyfit to determine the parameters of the boundary lines (assumed linear).

Your task is to write a function named Classify that returns a text string indicating where on the target the light pulse hit as well as a numeric score.

As shown on the graph, the text string should contain either “Bullseye,” “Close,” “Hit,” or “Miss.” If the player missed the screen altogether, the text string should contain “Total Miss.” If the coordinates sent to the function lie exactly on a boundary, it should be classified with the area farther from the center.

The numeric score should be set according to the following list:

Bulseye: 4
Close: 2
Hit: 1
Miss: 0
Total Miss: –1

Remember that a circle can be defined by

     R 2 = X 2 + Y 2 .

where R is the radius or the circle.

Blurred answer
Students have asked these similar questions
find the laplace transform for the flowing function 2(1-e) Ans. F(s)=- S 12) k 0 Ans. F(s)= k s(1+e) 0 a 2a 3a 4a 13) 2+ Ans. F(s)= 1 s(1+e") 3 14) f(t)=1, 0
Find the solution of the following Differential Equations Using Laplace Transforms 1) 4y+2y=0. y(0)=2. y'(0)=0. 2) y+w²y=0, (0)=A, y'(0)=B. 3) +2y-8y 0. y(0)=1. y'(0)-8. 4)-2-3y=0, y(0)=1. y'(0)=7. 5) y-ky'=0, y(0)=2, y'(0)=k. 6) y+ky'-2k²y=0, y(0)=2, y'(0) = 2k. 7) '+4y=0, y(0)=2.8 8) y+y=17 sin(21), y(0)=-1. 9) y-y-6y=0, y(0)=6, y'(0)=13. 10) y=0. y(0)=4, y' (0)=0. 11) -4y+4y-0, y(0)=2.1. y'(0)=3.9 12) y+2y'+2y=0, y(0)=1, y'(0)=-3. 13) +7y+12y=21e". y(0)=3.5. y'(0)=-10. 14) "+9y=10e". y(0)=0, y'(0)=0. 15) +3y+2.25y=91' +64. y(0)=1. y'(0) = 31.5 16) -6y+5y-29 cos(2t). y(0)=3.2, y'(0)=6.2 17) y+2y+2y=0, y(0)=0. y'(0)=1. 18) y+2y+17y=0, y(0)=0. y'(0)=12. 19) y"-4y+5y=0, y(0)=1, y'(0)=2. 20) 9y-6y+y=0, (0)-3, y'(0)=1. 21) -2y+10y=0, y(0)=3, y'(0)=3. 22) 4y-4y+37y=0, y(0)=3. y'(0)=1.5 23) 4y-8y+5y=0, y(0)=0, y'(0)=1. 24) ++1.25y-0, y(0)=1, y'(0)=-0.5 25) y 2 cos(r). y(0)=2. y'(0) = 0. 26) -4y+3y-0, y(0)=3, y(0) 7. 27) y+2y+y=e y(0)=0. y'(0)=0. 28) y+2y-3y=10sinh(27), y(0)=0. y'(0)=4. 29)…
Auto Controls   A union feedback control system has the following open loop transfer function where k>0 is a variable proportional gain   i. for K = 1 , derive the exact magnitude and phase expressions of G(jw).   ii) for K = 1 , identify the gaincross-over frequency (Wgc) [where IG(jo))| 1] and phase cross-overfrequency [where <G(jw) = - 180]. You can use MATLAB command "margin" to obtain there quantities.  iii) Calculate gain margin (in dB) and phase margin (in degrees) ·State whether the closed-loop is stable for K = 1 and briefly justify your answer based on the margin . (Gain marginPhase margin)   iv. what happens to the gain margin and Phase margin when you increase the value of K?you  You can use for loop in MATLAB to check that.Helpful matlab commands : if, bode, margin, rlocus   NO COPIED SOLUTIONS

Chapter 18 Solutions

EBK THINKING LIKE AN ENGINEER

Ch. 18.3 - Prob. 11CCCh. 18.3 - Assume a user has responded to the question "Do...Ch. 18.3 - Assume a user has responded to the question "Do...Ch. 18.4 - Write MATLAB code to represent the following...Ch. 18.4 - Write MATLAB code to represent the following...Ch. 18.4 - Write a MATLAB function named sumTtUp that will...Ch. 18.4 - Prob. 17CCCh. 18.5 - A device constructed to throw various objects can...Ch. 18.6 - Prob. 19CCCh. 18.6 - Prob. 20CCCh. 18.7 - Write MATLAB code to modify the previous gravity...Ch. 18.7 - Write MAT LAB code using try-catch to ask the user...Ch. 18 - Create a written algorithm and flowchart to...Ch. 18 - The Occupational Safety Health Administration...Ch. 18 - Prob. 3ICACh. 18 - Create a flowchart that represents the following...Ch. 18 - Create an algorithm to classify a given altitude...Ch. 18 - Answer the following questions. a. For what...Ch. 18 - Answer the following questions. a. For what...Ch. 18 - For each task listed, write a single MAT LAB...Ch. 18 - Prob. 9ICACh. 18 - What is stored in variable A after each of the...Ch. 18 - What will be displayed by the following code in...Ch. 18 - Ask users to enter a matrix that could be any size...Ch. 18 - A menu is generated using the following code:...Ch. 18 - A menu is generated using the following code:...Ch. 18 - Write a program using if-elseif-else statements...Ch. 18 - Write a program using switch-case statements that...Ch. 18 - Prob. 17ICACh. 18 - Write a program that asks the user to enter the...Ch. 18 - Prob. 19ICACh. 18 - Assume you are required to generate the menus...Ch. 18 - Assume you are required to generate the menus...Ch. 18 - Prob. 22ICACh. 18 - Assume you are required to generate the menus...Ch. 18 - We go to a state-of-the-art amusement park. All...Ch. 18 - A phase diagram for carbon and platinum is shown....Ch. 18 - Prob. 27ICACh. 18 - Prob. 28ICACh. 18 - Prob. 29ICACh. 18 - The Apple TV is a personal video device created by...Ch. 18 - Prob. 2RQCh. 18 - Prob. 3RQCh. 18 - Create an algorithm to determine whether a given...Ch. 18 - The specific gravity of gold is 19.3. Write a...Ch. 18 - An unmanned X-43A scramjet test vehicle has...Ch. 18 - A rod on the surface of Jupiter's moon Callisto...Ch. 18 - The Eco-Marathon is an annual competition...Ch. 18 - Assume a variable R contains a single number....Ch. 18 - Prob. 10RQCh. 18 - Create a program to determine whether a...Ch. 18 - Create a program to determine whether a given Mach...Ch. 18 - Humans can see electromagnetic radiation when the...Ch. 18 - For the protection of both the operator of a...Ch. 18 - Prob. 15RQCh. 18 - Prob. 17RQCh. 18 - Your function should use polyfit to determine the...Ch. 18 - Prob. 19RQCh. 18 - Prob. 20RQCh. 18 - The variable grade can have any real number value...Ch. 18 - Write a MATLAB program that will allow the student...Ch. 18 - One of the 14 NAE Grand Challenges is Engineering...Ch. 18 - Prob. 25RQ
Knowledge Booster
Background pattern image
Mechanical Engineering
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, mechanical-engineering and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press
Text book image
Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON
Text book image
Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education
Text book image
Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY
Text book image
Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning
Text book image
Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY
Mechanical Calculations; Author: Mometrix Academy;https://www.youtube.com/watch?v=FiQw8fpUHMY;License: Standard youtube license