Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [1 2 3 4 5];
b = [2 3 4 5 6];
y_correct = [1 6];
assert(isequal(vector_diff(a,b),y_correct))
a =
1
b =
6
t =
1
|
2 | Pass |
%%
a = 10:-2:0;
b = 1:2:11;
y_correct = 0:11;
assert(isequal(vector_diff(a,b),y_correct))
a =
10 8 6 4 2 0
b =
1 3 5 7 9 11
t =
1
|
3 | Pass |
%%
a=magic(5);
b=magic(6);
y_correct = 26:36;
assert(isequal(vector_diff(a,b),y_correct))
a =
Empty matrix: 1-by-0
b =
35 31 30 32 28 36 33 34 29 26 27
t =
1
|
4 | Pass |
%%
a=(10:100)';
b=11:100;
y_correct = 10;
assert(isequal(vector_diff(a,b),y_correct))
a =
10
b =
Empty matrix: 1-by-0
t =
1
|
5 | Pass |
%%
a=magic(3)-1.5;
b=[];
y_correct = -0.5:7.5;
assert(isequal(vector_diff(a,b),y_correct))
a =
6.5000 -0.5000 4.5000
1.5000 3.5000 5.5000
2.5000 7.5000 0.5000
b =
[]
t =
1
|
6 | Pass |
%%
a=zeros(5);
b=ones(3);
y_correct=[0 1];
assert(isequal(vector_diff(a,b),y_correct))
a =
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
b =
1 1 1
1 1 1
1 1 1
t =
1
|
7 | Pass |
%%
forbidden = '(regexp)';
assert(isempty(regexp(evalc('type vector_diff'),forbidden)));
|
253 Solvers
Matrix indexing with two vectors of indices
485 Solvers
725 Solvers
309 Solvers
556 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!