Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = '0001';
assert(isequal(bin2bcd(x),y_correct))
|
2 | Pass |
%%
x = 5;
y_correct = '0101';
assert(isequal(bin2bcd(x),y_correct))
|
3 | Pass |
%%
x = 12;
y_correct = '00010010';
assert(isequal(bin2bcd(x),y_correct))
|
4 | Pass |
%%
x = 156;
y_correct = '000101010110';
assert(isequal(bin2bcd(x),y_correct))
|
Maximum running product for a string of numbers
1112 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3623 Solvers
Create matrix of replicated elements
321 Solvers
276 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!