This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
"The condition input argument must be convertible to a scalar logical."
how this error is rectified?
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
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))
h =
2.8103 2.3226 3.3445 2.1703 3.6290
w =
70.4545 63.6364 75.4545 72.7273 97.7273
bmi =
25.0700 27.3990 22.5607 33.5100 26.9293
|
2 | Fail |
hw = [10 80];
bmi_correct = 563.6375;
assert(all(abs(bmi_calculator(hw) - bmi_correct) < 1e-4))
h =
0.0645
w =
36.3636
bmi =
563.6375
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!