Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1000;
y_correct = 1100;
assert(isequal(binary2gray(x),y_correct))
y =
1 0 0 0
y =
1×4 logical array
1 1 0 0
y =
1 1 0 0
y =
1100
|
2 | Pass |
x = 0010;
y_correct = 0011;
assert(isequal(binary2gray(x),y_correct))
y =
1 0
y =
1×2 logical array
1 1
y =
0 0 1 1
y =
11
|
3 | Fail |
x = 0011;
y_correct = 0010;
assert(isequal(binary2gray(x),y_correct))
y =
1 1
y =
1×2 logical array
0 0
y =
0 0 0 0
y =
0
|
962 Solvers
874 Solvers
401 Solvers
376 Solvers
Convert given decimal number to binary number.
636 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!