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 |
%%
a=0;b=0;
res=0;
assert(isequal(myXOR(a,b),res))
|
2 | Pass |
%%
a=1;b=1;
res=0;
assert(isequal(myXOR(a,b),res))
|
3 | Pass |
%%
a=1;b=0;
res=1;
assert(isequal(myXOR(a,b),res))
y =
1
|
4 | Pass |
%%
a=0;b=1;
res=1;
assert(isequal(myXOR(a,b),res))
y =
1
|
5 | Pass |
%%
a=[0 0 1 1];b=[1 0 1 0];
res=[1 0 0 1];
assert(isequal(myXOR(a,b),res))
y =
1
y =
1 0 0 1
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35550 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
309 Solvers
275 Solvers
Matlab Basics - y as a function of x
339 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!