How to Convert Fahrenheit to Celsius

조회 수: 86 (최근 30일)
Pu Andaes
Pu Andaes 2020년 10월 2일
댓글: Walter Roberson 2024년 9월 22일
function deg_ce = fa_to_ce(deg_f)
deg_ce = (5/9)*(deg_f-32);
fprintf('the temp is %f\n', deg_ce)
end
If i run it, it says that there aren't enough input arguments?
  댓글 수: 2
David Hill
David Hill 2020년 10월 2일
How are you running it?
c=fa_to_ce(10);
Rik
Rik 2020년 10월 2일
You forgot to tag this as homework. I have just done so for you.

댓글을 달려면 로그인하십시오.

답변 (4개)

Pratibha
Pratibha 2023년 5월 24일
temperature = input('Please enter the temperature: ');
units = input('Please enter the units of Temperature (C or F): ','s');
if (units == 'F' || units == 'f')
converted = (temperature-32)*(5/9);
convertedto = 'C';
elseif (units == 'C' || units == 'c')
converted = temperature*(9/5) + 32;
convertedto = 'F';
else
fprintf('\nYou have given a wrong input\n')
fprintf('The program will restart again\n')
fprintf('----------RESTART - FCF.M --------- \n\n')
fcf
end
fprintf('%.2f %s = %.2f %s\n',temperature, upper(units),converted,convertedto)
  댓글 수: 3
DGM
DGM 2023년 5월 24일
switch lower(units) % makes tests case-insensitive
case {'f','fahrenheit'} % you can support synonymous cases
% do things
case {'c','celsius','centigrade'}
% do things
otherwise
error('unknown units %s',units) % error() and warning() are things
end
... would be a start.
Rik
Rik 2023년 5월 24일
And in case of less drastic changes: using strcmp instead of == also solves most issues.

댓글을 달려면 로그인하십시오.


Bhavani
Bhavani 2023년 1월 13일
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'])

Image Analyst
Image Analyst 2023년 1월 13일
Your code already works as long as you pass it a value. Observe:
celsius = fa_to_ce(212) % Convert 212 F to C
The temperature is 100.000000 degrees Celsius.
celsius = 100
celsius = fa_to_ce(32) % Convert 32 F to C
The temperature is 0.000000 degrees Celsius.
celsius = 0
function deg_ce = fa_to_ce(deg_f)
deg_ce = (5/9)*(deg_f-32);
fprintf('The temperature is %f degrees Celsius.\n', deg_ce)
end
Your problem was almost certainly that you were just clicking the green Run triangle. If you do that then nothing can possibly get passed in to the argument list and so you get the error you got. You need to call it from a script or the command line and you need to pass in the value in degrees F.

Kaltum
Kaltum 2024년 9월 22일
how can i use matlab to convert degrees celsius to farenheit
  댓글 수: 1
Walter Roberson
Walter Roberson 2024년 9월 22일
syms deg_ce deg_f
eqn = deg_ce == (5/9)*(deg_f-32)
solve(eqn, deg_f)
So the formula is 9/5 * deg_ce + 32

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Sources에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by