Answered step by step
Verified Expert Solution
Question
1 Approved Answer
matlab please c. Write a MATLAB function convertTemp that converts the temperatures between Fahrenheit and Celsius. The function has three inputs: array of the temperatures
matlab please
c. Write a MATLAB function convertTemp that converts the temperatures between Fahrenheit and Celsius. The function has three inputs: array of the temperatures and array of the letters that indicates whether the entered value is in Fahrenheit ( F ') or in Celsius ('C'). Also, the size of the array N. The length of the input arrays is 5 and the temperatures and the letters should be entered by a loop. If the user entered a letter that is not " C " or " F ", the program should ask the user to re-enter again. The function has 2 outputs, one is the array of the converted temperatures and the other is the array of letters corresponding to the converted temperatures. Hint: use the following equations for conversion: C=(F32)(95)F=C(59)+32 (User entered values are indicated in bold) COSC 330: Introduction to Artificial Inteliggence please enter a number: 20 please enter a letter (F or C):C please enter a number: 50 please enter a letter (F or C):F please enter a number: 30 please enter a letter (F or C):C please enter a number: 70 please enter a letter (F or C):F please enter a number: 15 please enter a letter (F or C):C The converted temperatures are: 68 10 86 2.11111 leto1 59 Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started