Borrar filtros
Borrar filtros

How to categorize a range

3 visualizaciones (últimos 30 días)
Takashi Fukushima
Takashi Fukushima el 1 de Nov. de 2019
Comentada: Takashi Fukushima el 2 de Nov. de 2019
Hello,
I would like to make write a program like categorizing based on answers.
I put what I have now.
a=input("Enter your height in cm: ");
b=input("Enter your weight in g: ");
Gender=input("Enter number for your gender 1=male 2=female: ");
BMI=(b/1000)/(a/100)^2;
disp("Your BMI is: " + BMI);
Status=0;
switch Gender
case 1
if BMI<20
Status="Underweight";
if BMI>=20 & BMI<25
Status="Regular weight";
if BMI>=25 & BMI<30
Status="Overweight";
if BMI>=30 & BMI<40
Status="Adiposity";
if BMI>=40
Status="Severe Adiposity";
end
end
end
end
end
case 2
if BMI<19
Status="Underweight";
if BMI>=19 && BMI<24
Status="Regular weight";
if BMI>=24 && BMI<30
Status="Overweight";
if BMI>=30 && BMI<40
Status="Adiposity";
if BMI>=40
Status="Severe Adiposity";
end
end
end
end
end
otherwise
disp("invalid");
end
disp("Your health status: " + Status);
It does not have an error, but it applies only the first "if" which shows "Status=Underweight", and other "if" shows as "Status=0"
I really appreciate if you can solve this problem.
Thanks,

Respuesta aceptada

David Hill
David Hill el 2 de Nov. de 2019
function BMIdetermination()
a=input("Enter your height in cm: ");
b=input("Enter your weight in g: ");
Gender=input("Enter number for your gender 1=male 2=female: ");
BMI=(b/1000)/(a/100)^2;
disp("Your BMI is: " + BMI);
lookup={'Underweight','Regular weight','Overweight','Adiposity','Severe Adiposity'};
if Gender==1
Status=lookup{find(histcounts(BMI,[0,20,25,30,40,100]))};
else
Status=lookup{find(histcounts(BMI,[0,19,24,30,40,100]))};
end
disp("Your health status: " + Status);
end
  1 comentario
Takashi Fukushima
Takashi Fukushima el 2 de Nov. de 2019
Thank you so much! I am amazed that the answer can be this simple.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Gamma Functions en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by