Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0.62;
assert(isequal( Mile_from_KM(x),y_correct))
y =
0.6200
|
2 | Pass |
x = 10;
y_correct = 6.2;
assert(isequal( Mile_from_KM(x),y_correct))
y =
6.2000
|
3 | Pass |
x = 5.2;
y_correct = 3.2240;
assert(isequal( Mile_from_KM(x),y_correct))
y =
3.2240
|
4 | Pass |
filetext = fileread('Mile_from_KM.m');
assert(isempty(strfind(filetext, '*')),'sign * forbidden')
assert(isempty(strfind(filetext, '==')),'sign == forbidden')
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
261 Solvers
235 Solvers
220 Solvers
351 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!