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))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
17131 Solvers
Matlab Basics II - Create a vector with a repeated entry
182 Solvers
141 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!