Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5];
n = 2;
y_correct = [1 0 0 2 0 0 3 0 0 4 0 0 5 0 0];
assert(isequal(insert_zeros(x,n),y_correct))
y =
1 0 0 2 0 0 3 0 0 4 0 0 5 0 0
|
2 | Pass |
x = [1 2 3 4 5];
n = 1;
y_correct = [1 0 2 0 3 0 4 0 5 0];
assert(isequal(insert_zeros(x,n),y_correct))
y =
1 0 2 0 3 0 4 0 5 0
|
3 | Pass |
x = [1 2];
n = 5;
y_correct = [1 0 0 0 0 0 2 0 0 0 0 0];
assert(isequal(insert_zeros(x,n),y_correct))
y =
1 0 0 0 0 0 2 0 0 0 0 0
|
4 | Pass |
x = 1:10;
n = 1;
y_correct = [1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0];
assert(isequal(insert_zeros(x,n),y_correct))
y =
Columns 1 through 16
1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0
Columns 17 through 20
9 0 10 0
|
5 | Pass |
x = 1:4;
n = 10;
y_correct = [1 0 0 0 0 0 0 0 0 0 0 ...
2 0 0 0 0 0 0 0 0 0 0 ...
3 0 0 0 0 0 0 0 0 0 0 ...
4 0 0 0 0 0 0 0 0 0 0];
assert(isequal(insert_zeros(x,n),y_correct))
y =
Columns 1 through 16
1 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0
Columns 17 through 32
0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0
Columns 33 through 44
0 4 0 0 0 0 0 0 0 0 0 0
|
6 | Pass |
x = -3:3;
n = 3;
y_correct = [-3 0 0 0 -2 0 0 0 -1 0 0 0 0 0 0 0 ...
1 0 0 0 2 0 0 0 3 0 0 0];
assert(isequal(insert_zeros(x,n),y_correct))
y =
Columns 1 through 16
-3 0 0 0 -2 0 0 0 -1 0 0 0 0 0 0 0
Columns 17 through 28
1 0 0 0 2 0 0 0 3 0 0 0
|
7 | Pass |
x = [11 17 42 81 39];
n = 2;
y_correct = [11 0 0 17 0 0 42 0 0 81 0 0 39 0 0];
assert(isequal(insert_zeros(x,n),y_correct))
y =
11 0 0 17 0 0 42 0 0 81 0 0 39 0 0
|
8 | Pass |
x = 2:3:20;
n = 1;
y_correct = [2 0 5 0 8 0 11 0 14 0 17 0 20 0];
assert(isequal(insert_zeros(x,n),y_correct))
y =
2 0 5 0 8 0 11 0 14 0 17 0 20 0
|
Find state names that end with the letter A
708 Solvers
How long is the longest prime diagonal?
338 Solvers
Flag largest magnitude swings as they occur
582 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3613 Solvers
2099 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!