Hi All,
Here's the code that I've written for BMI calculation , but my code is not being accepted in Cody. I checked that code with test cases in my MATLAB software and it is satisfying the condition.Can someone tell me where the error is.
% Cody
% BMI calculation ; weight(kg)/height(m)^2
% 1kg=2.2 pound, 1 inch=2.54 cm
hw = [66 155;60 140;72 166;58 160;75 215];
hw1=[10 80];
% Convert the height values from inches to meters
height= 2.54*0.01*hw(:,1)
% Convert the weight values from lbs to kilograms
weight= (1/2.2)*hw(:,2)
% Calculate the bmi for height and weight combination and return the output variable 'bmi'
bmi=(weight./(height.^2))'
bmi = hw;
Thanks in advance!
Swati

댓글 수: 4

you do a lot of calculations and then you throw them away with
bmi = hw;
John D'Errico
John D'Errico 2020년 11월 5일
Is this a function? Cody requires a function. not a script.
Swati Sarangi
Swati Sarangi 2020년 11월 6일
No, it's not a function. I tried this code with MATLAB installed in my laptop.
KSSV
KSSV 2020년 11월 6일
bmi=(weight./(height.^2))'
bmi = hw;
You calculated the bmi values; and then you replaced them with existitng variable hw....

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

답변 (0개)

카테고리

도움말 센터File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

질문:

2020년 11월 5일

댓글:

2020년 11월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by