Matlab question ASAP Write a function that accepts the tempe
Matlab question
ASAP
Write a function that accepts the temperature in degrees Celsius and outputs corresponding values in degree Fahrenheit and degree Kelvin. The relation between the two is given by: T degree F = 9/5 T degree C + 32 and T degree K = T degree C + 273.Solution
prompt = \'What is the temperature in degrees? \';
x = input(prompt)
T_faran_heat = ((9/5)*x)+32
T_kelvin=x+273
