Effacer les filtres
Effacer les filtres

Trying to find the number of people overweight gives zero

1 vue (au cours des 30 derniers jours)
Victor
Victor le 19 Oct 2023
Commenté : Dyuman Joshi le 21 Oct 2023
% Read data from the Excel file
data = xlsread('bodyInfo.xlsx');
% Extract columns
Gender = data(:, 2); % 0: Male, 1: Female
Height = data(:, 3); % measured in cm
Weight = data(:, 4); % measured in KG
% Calculate BMI
BMI = (703 * Weight) ./ (Height.^2);
% (a) Calculate average BMI for male group and standard deviation for female group
avg_BMI_male = mean(BMI(Gender == 0));
std_BMI_female = std(BMI(Gender == 1));
% (b) Determine the number of males classified as 'Overweight'
overweight_males = sum(Gender == 0 & BMI >= 25 & BMI < 30);
% (c) Determine the number of females classified as 'Obese'
obese_females = sum(Gender == 1 & BMI >= 30);
% Display the results
fprintf('Average BMI for Male: %.2f\n', avg_BMI_male);
fprintf('Standard Deviation of BMI for Female: %.2f\n', std_BMI_female);
fprintf('Number of Males classified as Overweight: %d\n', overweight_males);
fprintf('Number of Females classified as Obese: %d\n', obese_females);
  2 commentaires
Dyuman Joshi
Dyuman Joshi le 19 Oct 2023
There might not be any data in that particular category.
Why are you multiplying by 703 to find the BMI? And not converting the height to meters?
Jon
Jon le 19 Oct 2023
Please attach your input .xlsx file so we can run your code

Connectez-vous pour commenter.

Réponses (1)

the cyclist
the cyclist le 19 Oct 2023
I agree with @Jon that uploading your data file will help, but the problem is almost certainly what @Dyuman Joshi hints at, which is that you are most likely not using the correct formula for BMI, given the units of your inputs.
The formula
BMI = (703 * Weight) ./ (Height.^2);
is a correct one, but appropriate only when using Imperial units (weight measured in pounds and height measured in inches).
According to the comments in your code, you have Weight in kilograms and Height in centimeters. So, I believe you need
BMI = (Weight) ./ ((Height/100).^2);
  4 commentaires
Sam Chak
Sam Chak le 19 Oct 2023
@Victor, do you plot the chart or histogram as well?
Dyuman Joshi
Dyuman Joshi le 21 Oct 2023
Any updates? @Victor

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by