Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1:5;
y = 2:6;
y_correct = 1;
assert(isequal(set_diff(x,y) ,y_correct))
x =
1 2 3 4 5
y =
2 3 4 5 6
jj =
1
|
2 | Pass |
x = 1:5;
y = 2:6;
y_correct = 6;
assert(isequal(set_diff(y,x) ,y_correct))
jj =
6
|
3 | Fail |
x=2:4;
y=4:2;
y_correct = [2 3 4];
assert(isequal(set_diff(x,y) ,y_correct))
x =
2 3 4
y =
1×0 empty double row vector
jj =
2
|
4 | Fail |
x=0:4;
y=2:4;
y_correct = [0 1];
assert(isequal(set_diff(x,y) ,y_correct))
x =
0 1 2 3 4
y =
2 3 4
jj =
0
|
1421 Solvers
Number of odd and even elements within matrix
124 Solvers
262 Solvers
Find out value of sine given by degree.
231 Solvers
Matlab Basics - Pick out parts of a vector
198 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!