Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1];
y_correct = [1 1;1 1];
assert(isequal(matrix_replication(x),y_correct))
y =
1 1
1 1
|
2 | Pass |
x = [1 2;3 4];
y_correct = [1 2 1 2; 3 4 3 4; 1 2 1 2; 3 4 3 4];
assert(isequal(matrix_replication(x),y_correct))
y =
1 2 1 2
3 4 3 4
1 2 1 2
3 4 3 4
|
3 | Pass |
x = [1 2];
y_correct = [1 2 1 2; 1 2 1 2];
assert(isequal(matrix_replication(x),y_correct))
y =
1 2 1 2
1 2 1 2
|
Select every other element of a vector
16256 Solvers
307 Solvers
948 Solvers
441 Solvers
Matrix which contains the values of an other matrix A at the given locations.
196 Solvers