Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(3);
y = eye(3);
operation = 'Add';
y_correct = true;
assert(isequal(ArrayOperation(x,y,operation),y_correct))
y =
1
|
2 | Pass |
x = magic(3);
y = eye(2);
operation = 'Add';
y_correct = false;
assert(isequal(ArrayOperation(x,y,operation),y_correct))
y =
0
|
3 | Pass |
x = magic(3);
y = repmat(3,3,3);
operation = 'Multiply';
y_correct = true;
assert(isequal(ArrayOperation(x,y,operation),y_correct))
y =
logical
1
|
4 | Pass |
x = magic(3);
y = repmat(3,3,2);
operation = 'Multiply';
y_correct = true;
assert(isequal(ArrayOperation(x,y,operation),y_correct))
y =
logical
1
|
5 | Pass |
x = 3;
y = repmat(3,3,2);
operation = 'Add';
y_correct = true;
assert(isequal(ArrayOperation(x,y,operation),y_correct))
y =
1
|
6 | Pass |
x = 3;
y = repmat(3,3,2);
operation = 'Subtract';
y_correct = true;
assert(isequal(ArrayOperation(x,y,operation),y_correct))
y =
1
|
7 | Pass |
x = 3;
y = repmat(3,3,2);
operation = 'Divide';
y_correct = false;
assert(isequal(ArrayOperation(x,y,operation),y_correct))
y =
logical
0
|
8 | Pass |
x = 3;
y = repmat(3,3,2);
operation = 'Divide';
y_correct = true;
assert(isequal(ArrayOperation(y,x,operation),y_correct))
y =
1
|
276 Solvers
Permute diagonal and antidiagonal
179 Solvers
240 Solvers
What is Sum Of all elements of Matrix
215 Solvers
189 Solvers