Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3; 7 8 9; 10 40 60;]
y_correct = [6 6 6;3 32 51; -9 -38 -57;]
assert(isequal(MatDiff(x),y_correct));
x =
1 2 3
7 8 9
10 40 60
y_correct =
6 6 6
3 32 51
-9 -38 -57
|
2 | Pass |
x = eye(3);
y_correct = [ -1 1 0; 0 -1 1; 1 0 -1];
assert(isequal(MatDiff(x),y_correct));
|
3 | Pass |
x = repmat(7, 7, 7);
y_correct = repmat(0, 7, 7);
assert(isequal(MatDiff(x),y_correct));
|
4 | Pass |
x = diag(1:4);
y_correct = [ -1 2 0 0;
0 -2 3 0;
0 0 -3 4;
1 0 0 -4;]
assert(isequal(MatDiff(x),y_correct));
y_correct =
-1 2 0 0
0 -2 3 0
0 0 -3 4
1 0 0 -4
|
12387 Solvers
Select every other element of a vector
20358 Solvers
The Goldbach Conjecture, Part 2
1286 Solvers
Find Index of maximum Value and maximum Value of a vector
145 Solvers
405 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!