How to display functions with 2 outputs

조회 수: 3 (최근 30일)
Methat
Methat 2024년 4월 16일
댓글: Methat 2024년 4월 16일
I am confused on how to display functions with 2 outputs, for my unit converter I need to display the output and the unt of that output an example would be 32 F but I cant seem to figure it out.
Basically it has to ensure the function returns both the converted value (numout) along with the unit relating to this output number (unit).
a = input('Please enter a number ');
disp("Select what conversion you want to do:")
disp('1. Celsius to Fahrenhiet')
convtype = input("Please enter the conversion type: ");
switch convtype
case 1
conversion = 'cels2fahr';
answer = myunitconv(a, conversion);
disp([num2str(answer)]);
end
myunitconv(a, conversion)
function [numout, unit] = myunitconv(numin, convtype)
if strcmp(convtype,'cels2fahr')
numout = (numin*(9/5))+32;
unit = ;
else
error('Invalid conversion type')
end
end

채택된 답변

VBBV
VBBV 2024년 4월 16일
a = 212% input('Please enter a number ');
a = 212
disp("Select what conversion you want to do:");
Select what conversion you want to do:
disp('1. Celsius to Fahrenhiet')
1. Celsius to Fahrenhiet
convtype = 1 %input("Please enter the conversion type: ");
convtype = 1
switch convtype
case 1
conversion = 'cels2fahr';
[answer unit] = myunitconv(a, conversion);
disp([num2str(answer) unit ]);
end
413.6F
function [numout, unit] = myunitconv(numin, conversion)
if strcmp(conversion,'cels2fahr')
numout = (numin*(9/5))+32;
unit = 'F';
else
error('Invalid conversion type')
end
end
  댓글 수: 2
VBBV
VBBV 2024년 4월 16일
you can add more cases and correspnding units (inside the function) to display the answer and unit as output
Methat
Methat 2024년 4월 16일
Thanks! I understand how it works now I was just missing the unit so just by adding it will actually print the unit value now.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Debugging and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by