This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = eye(2);
y_correct = [0 1; 1 0];
assert(isequal(notdiag(x),y_correct))
|
2 | Pass |
x = [4 0 0; 0 4 0; 0 0 4];
y_correct = [0 4 4; 4 0 4; 4 4 0];
assert(isequal(notdiag(x),y_correct))
|
3 | Pass |
x = [ -6 0 0 0; 0 -6 0 0; 0 0 -6 0; 0 0 0 -6];
y_correct = [0 -6 -6 -6; -6 0 -6 -6; -6 -6 0 -6; -6 -6 -6 0];
assert(isequal(notdiag(x),y_correct))
|
4 | Pass |
x = [100 0 0; 0 100 0; 0 0 100];
y_correct = [0 100 100; 100 0 100; 100 100 0];
assert(isequal(notdiag(x),y_correct))
|
Who has power to do everything in this world?
256 Solvers
Try 1.5.4: Celsius to Fahrenheit
486 Solvers
394 Solvers
Find out value of sine given by degree.
172 Solvers
364 Solvers