This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
this is a good problem . i learn a lot from this
w=hw(:,2)
w=w./2.2
h=hw(:,1)
h=1./[[h.*.0254].^2]
bmi=w.*h
solution for help
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))
w =
155
140
166
160
215
w =
70.4545
63.6364
75.4545
72.7273
97.7273
h =
66
60
72
58
75
h =
0.3558
0.4306
0.2990
0.4608
0.2756
bmi =
25.0700
27.3990
22.5607
33.5100
26.9293
|
2 | Pass |
hw = [10 80];
bmi_correct = 563.6375;
assert(all(abs(bmi_calculator(hw) - bmi_correct) < 1e-4))
w =
80
w =
36.3636
h =
10
h =
15.5000
bmi =
563.6375
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!