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 |
n=3;
y=[1 0 1
0 1 0
1 0 1];
assert(isequal(X(n),y))
|
2 | Pass |
n=4;
y=[1 0 0 1
0 1 1 0
0 1 1 0
1 0 0 1];
assert(isequal(X(n),y))
|
3 | Pass |
n=1;
y=[1]
assert(isequal(X(n),y))
y =
1
|
4 | Pass |
n=2;
y=[1 1;1 1]
assert(isequal(X(n),y))
y =
1 1
1 1
|
5 | Pass |
n=5;
y=[1 0 0 0 1
0 1 0 1 0
0 0 1 0 0
0 1 0 1 0
1 0 0 0 1];
assert(isequal(X(n),y))
|
Is my wife right? Now with even more wrong husband
1145 Solvers
612 Solvers
Basics: 'Find the eigenvalues of given matrix
257 Solvers
412 Solvers
1491 Solvers