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))
|
1051 Solvers
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
Set the array elements whose value is 13 to 0
941 Solvers
171 Solvers
220 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!