Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x =[1+2i; 3-7i; 2i; 6];
y_correct = [1+2i, 3-7i, 2i, 6];
assert(isequal(T(x),y_correct))
|
2 | Fail |
x =[-2i -7i -2i -6i];
y_correct =[-2i; -7i; -2i; -6i;];
assert(isequal(T(x),y_correct))
|
3 | Pass |
x =[1 2; 3 4;];
y_correct =[1 3; 2 4;];
assert(isequal(T(x),y_correct))
|
4 | Fail |
x =[100+200i 3-4i 8-7.5i; 0.2+3i 0.005-0.23i -4];
y_correct =[100+200i 0.2+3i; 3-4i 0.005-0.23i; 8-7.5i -4;];
assert(isequal(T(x),y_correct))
|
2401 Solvers
1263 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
321 Solvers
387 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!