Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1.60934;
assert(isequal(mph2kmph(x),y_correct))
|
2 | Pass |
x = 10;
y_correct = 16.0934;
assert(isequal(mph2kmph(x),y_correct))
|
3 | Pass |
x = 5;
y_correct = 8.0467;
assert(isequal(mph2kmph(x),y_correct))
|
4 | Pass |
x = 50;
y_correct = 80.467;
assert(isequal(mph2kmph(x),y_correct))
|
Find the largest value in the 3D matrix
1056 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
257 Solvers
364 Solvers
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!