Question: MATLAB. For the following problem, develop a flow chart If the lengths of two sides of a triangle and the angle between them are known,
MATLAB. For the following problem, develop a flow chart

If the lengths of two sides of a triangle and the angle between them are known, the length of the third side can be calculated. Given the lengths of two sides (b and c) of a triangle, and the angle between them alpha in degrees, the third side a is calculated as follows: a^2 = b^2 + c^2 - 2 b c cos(alpha) Write a script thirdside that will prompt the user and read in values for b, c, and alpha (in degrees), and then calculate and print the value of a with three decimal places. The format of the output from the script should look exactly like this: > > thirdside Enter the first side: 2.2 Enter the second side: 4.4 Enter the angle between them: 50 The third side is 3.429
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
