Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0.62;
assert(isequal( Mile_from_KM(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
|
2 | Pass |
x = 10;
y_correct = 6.2;
assert(isequal( Mile_from_KM(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
|
3 | Pass |
x = 5.2;
y_correct = 3.2240;
assert(isequal( Mile_from_KM(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
|
4 | Pass |
filetext = fileread('Mile_from_KM.m');
assert(isempty(strfind(filetext, '*')),'sign * forbidden')
assert(isempty(strfind(filetext, '==')),'sign == forbidden')
|
9831 Solvers
516 Solvers
2537 Solvers
Test if two numbers have the same digits
187 Solvers
Compute LOG(1+X) in natural log
204 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!