Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = '0101';
y_correct = 1;
assert(isequal(even_parity(x),y_correct))
|
2 | Pass |
x = '0100';
y_correct = 0;
assert(isequal(even_parity(x),y_correct))
|
3 | Pass |
x = '0111';
y_correct = 0;
assert(isequal(even_parity(x),y_correct))
|
4 | Pass |
x = '1111';
y_correct = 1;
assert(isequal(even_parity(x),y_correct))
|
5 | Pass |
x = '0000';
y_correct = 1;
assert(isequal(even_parity(x),y_correct))
|
280 Solvers
Matrix indexing with two vectors of indices
485 Solvers
401 Solvers
365 Solvers
Sum the real and imaginary parts of a complex number
113 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!