MATLAB --> Umrechnungen --> Temeratur und Farenheit?

1 Antwort

Z.B.:

disp('This program convert Celsius to Fahrenheit');
Celsius=input('Write a temperature in Celsius and you''ll have the result in Fahrenheit: ');
disp([ 'x = ' num2str(Celsius) ' Celcius and y = ' num2str(Celsius*1.8+32) ' Fahrenheit'])

Quelle: https://www.mathworks.com/matlabcentral/answers/113057-celsius-to-fahrenheit-or-vice-versa


Soelller 
Beitragsersteller
 05.06.2019, 01:59

Vielen Dank

0