Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0.62;
assert(isequal( Mile_from_KM(x),y_correct))
|
2 | Pass |
x = 10;
y_correct = 6.2;
assert(isequal( Mile_from_KM(x),y_correct))
|
3 | Pass |
x = 5.2;
y_correct = 3.2240;
assert(isequal( Mile_from_KM(x),y_correct))
|
4 | Pass |
filetext = fileread('Mile_from_KM.m');
assert(isempty(strfind(filetext, '*')),'sign * forbidden')
assert(isempty(strfind(filetext, '==')),'sign == forbidden')
|
261 Solvers
248 Solvers
Append two matrix as shown below example
181 Solvers
Replace every 3rd element in a vector with 4
170 Solvers
Test Problem; Create a 5x5 array containing all ones
270 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!