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))
first =
66
60
72
58
75
first2 =
1.6764
1.5240
1.8288
1.4732
1.9050
second =
155
140
166
160
215
second2 =
70.4545
63.6364
75.4545
72.7273
97.7273
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))
first =
10
first2 =
0.2540
second =
80
second2 =
36.3636
bmi =
563.6375
|
19329 Solvers
3238 Solvers
Convert a vector into a number
503 Solvers
174 Solvers
321 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!