Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5];
y = [1 2 3 4 5];
added_vec = [2 4 6 8 10];
assert(isequal(your_fcn_name(x,y),added_vec))
added_vec =
2 4 6 8 10
|
2 | Pass |
x = 1:20;
y = 1:20;
added_vec = 2:2:40;
assert(isequal(your_fcn_name(x,y),added_vec))
added_vec =
2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40
|
3 | Pass |
x = ones(1,100);
y = ones(1,100);
added_vec = 2*ones(1,100);
assert(isequal(your_fcn_name(x,y),added_vec))
added_vec =
Columns 1 through 30
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
Columns 31 through 60
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
Columns 61 through 90
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
Columns 91 through 100
2 2 2 2 2 2 2 2 2 2
|
4 | Pass |
x = 42*ones(1,42);
y = -42*ones(1,42);
added_vec = zeros(1,42);
assert(isequal(your_fcn_name(x,y),added_vec))
added_vec =
Columns 1 through 30
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 0 0 0 0 0
Columns 31 through 42
0 0 0 0 0 0 0 0 0 0 0 0
|
5 | Pass |
x = 5:5:100;
y = ones(1,20);
added_vec = 6:5:101;
assert(isequal(your_fcn_name(x,y),added_vec))
added_vec =
6 11 16 21 26 31 36 41 46 51 56 61 66 71 76 81 86 91 96 101
|
6 | Pass |
x = mod(1:100,2);
y = mod([2:100,1],2);
added_vec = ones(1,100);
assert(isequal(your_fcn_name(x,y),added_vec))
added_vec =
Columns 1 through 30
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 31 through 60
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 61 through 90
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 91 through 100
1 1 1 1 1 1 1 1 1 1
|
Vectorize the digits of an Integer
236 Solvers
410 Solvers
Sum of diagonals elements of a matrix
132 Solvers
222 Solvers
55 Solvers