This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0;
assert(isequal(one_Comp(x),y_correct))
y =
0
|
2 | Pass |
x = 100;
y_correct = [0,1,1];
assert(isequal(one_Comp(x),y_correct))
y =
0 1 1
|
3 | Pass |
x = 1110;
y_correct = [0,0,0,1];
assert(isequal(one_Comp(x),y_correct))
y =
0 0 0 1
|
4 | Pass |
x = 101101101001;
y_correct = [0,1,0,0,1,0,0,1,0,1,1,0];
assert(isequal(one_Comp(x),y_correct))
y =
0 1 0 0 1 0 0 1 0 1 1 0
|
5 | Fail |
x = 00110;
y_correct = [1,1,0,0,1];
assert(isequal(one_Comp(x),y_correct))
y =
0 0 1
|
5703 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
109 Solvers
363 Solvers
Matlab Basics II - Count rows in a matrix
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!