Nice!
function bmi = bmi_calculator(hw)
% Convert the height values from inches to meters
height=hw(:,1)*(2.54)/100
% Convert the weight values from lbs to kilograms
weight=hw(:,2)*(1/2.2)
% Calculate the bmi for height and weight combination and return the output variable 'bmi'
bmi = weight./(height.*height)
Hi All,
I'm getting correct result in my computer but in this platform it is giving me assertion error.
% 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;
Kindly suggest me the way to fix this issue.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
hw = [66 155;60 140;72 166;58 160;75 215];
bmi_correct = [25.0700;27.3990;22.5607;33.5100;26.9293];
assert(all(abs(bmi_calculator(hw) - bmi_correct) < 1e-4))
|
2 | Pass |
hw = [10 80];
bmi_correct = 563.6375;
assert(all(abs(bmi_calculator(hw) - bmi_correct) < 1e-4))
|
686 Solvers
348 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
450 Solvers
264 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!