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')
|
986 Solvers
The Hitchhiker's Guide to MATLAB
2695 Solvers
4105 Solvers
Returning a "greater than" vector
150 Solvers
303 Solvers