Create a variable ftemp to store a temperature in degrees Fahrenheit (F). Convert this to degrees Celsius (C) and store the result in a variable ctemp. The conversion factor is C = (F – 32) * 5/9
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:1| Question number:9.1
All Answers
total answers (1)
ftemp = 75;
ctemp = (ftemp - 32) * 5/9
ctemp =
23.8889
need an explanation for this answer? contact us directly to get an explanation for this answer