Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = '0100';
assert(isequal(excess_3(x),y_correct))
|
2 | Pass |
x = 2;
y_correct = '0101';
assert(isequal(excess_3(x),y_correct))
|
3 | Pass |
x = 10;
y_correct = '1101';
assert(isequal(excess_3(x),y_correct))
|
4 | Pass |
x = 5;
y_correct = '1000';
assert(isequal(excess_3(x),y_correct))
|
5 | Pass |
x = 0;
y_correct = '0011';
assert(isequal(excess_3(x),y_correct))
|
404 Solvers
317 Solvers
Getting the indices from a vector
3210 Solvers
Matrix which contains the values of an other matrix A at the given locations.
214 Solvers
5465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!