Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
wc_correct1 = 23.1871;
wc_result1 = ComputeWindChill(32, 10);
assert(abs(wc_result1 - wc_correct1) < 0.0001)
ans =
-16.5915
|
2 | Fail |
wc_correct2 = -9.0101;
wc_result2 = ComputeWindChill(10, 20);
assert(abs(wc_result2 - wc_correct2) < 0.0001)
ans =
-22.8989
|
3 | Fail |
wc_correct3 = 17.4215;
wc_result3 = ComputeWindChill(20, 2);
assert(abs(wc_result3 - wc_correct3) < 0.0001)
ans =
-1.7958
|
6718 Solvers
2486 Solvers
Return unique values without sorting
588 Solvers
Number of 1s in a binary string
2818 Solvers
324 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!