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))
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
835 Solvers
306 Solvers
227 Solvers
Find out total non zero element of matrix
194 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!