Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3 4 5 6 7 8 9];
t = [9 8 7 6 5 4 3 1 2];
y_correct = [9 8 7 6 5 4 3 1 2];
assert(isequal(your_fcn_name(x,t),y_correct))
|
2 | Pass |
%%
x = [1 2 1 4 0 -5 15];
t = [7 2 3 4 5 6 1];
y_correct = [15 2 1 4 0 -5 1];
assert(isequal(your_fcn_name(x,t),y_correct))
|
1800 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
1882 Solvers
250 Solvers
509 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!