Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = '0001';
assert(isequal(bin2bcd(x),y_correct))
x =
0001
|
2 | Pass |
%%
x = 5;
y_correct = '0101';
assert(isequal(bin2bcd(x),y_correct))
x =
0101
|
3 | Pass |
%%
x = 12;
y_correct = '00010010';
assert(isequal(bin2bcd(x),y_correct))
x =
0001
x =
00010010
|
4 | Pass |
%%
x = 156;
y_correct = '000101010110';
assert(isequal(bin2bcd(x),y_correct))
x =
0001
x =
00010101
x =
000101010110
|
Sum of diagonal of a square matrix
1327 Solvers
Celsius to Fahrenheit converter
388 Solvers
Integer Sequence - II : New Fibonacci
252 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
171 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!