필터 지우기
필터 지우기

Trying to find the number of people overweight gives zero

조회 수: 1 (최근 30일)
Victor
Victor 2023년 10월 19일
댓글: Dyuman Joshi 2023년 10월 21일
% 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
Dyuman Joshi
Dyuman Joshi 2023년 10월 19일
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 2023년 10월 19일
Please attach your input .xlsx file so we can run your code

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

답변 (1개)

the cyclist
the cyclist 2023년 10월 19일
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
Sam Chak
Sam Chak 2023년 10월 19일
@Victor, do you plot the chart or histogram as well?

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by