Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = [1 1 1;0 1 0;1 1 1];
assert(isequal(Z(n),y_correct))
y =
1 0 0
0 1 0
0 0 1
|
2 | Pass |
n = 4;
y_correct = [1 1 1 1;0 0 1 0; 0 1 0 0; 1 1 1 1];
assert(isequal(Z(n),y_correct))
y =
1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
|
3 | Pass |
n = 5;
y_correct = [1 1 1 1 1; 0 0 0 1 0; 0 0 1 0 0; 0 1 0 0 0; 1 1 1 1 1];
assert(isequal(Z(n),y_correct))
y =
1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 1 0
0 0 0 0 1
|
3604 Solvers
Output any real number that is neither positive nor negative
316 Solvers
Find out value of sine given by degree.
231 Solvers
443 Solvers
2629 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!