Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
y_correct = 1;
assert(isequal(special_eye(n),y_correct))
ans =
1
|
2 | Pass |
n = 2;
y_correct = [1 0;0 2]
assert(isequal(special_eye(n),y_correct))
y_correct =
1 0
0 2
ans =
1 0
0 2
|
3 | Pass |
n = 3;
y_correct = [1 0 0;0 2 0;0 0 3]
assert(isequal(special_eye(n),y_correct))
y_correct =
1 0 0
0 2 0
0 0 3
ans =
1 0 0
0 2 0
0 0 3
|
4 | Pass |
n = 4;
y_correct = [1 0 0 0;0 2 0 0;0 0 3 0;0 0 0 4]
assert(isequal(special_eye(n),y_correct))
y_correct =
1 0 0 0
0 2 0 0
0 0 3 0
0 0 0 4
ans =
1 0 0 0
0 2 0 0
0 0 3 0
0 0 0 4
|
5 | Pass |
n = 5;
y_correct = [1 0 0 0 0;0 2 0 0 0;0 0 3 0 0; 0 0 0 4 0; 0 0 0 0 5]
assert(isequal(special_eye(n),y_correct))
y_correct =
1 0 0 0 0
0 2 0 0 0
0 0 3 0 0
0 0 0 4 0
0 0 0 0 5
ans =
1 0 0 0 0
0 2 0 0 0
0 0 3 0 0
0 0 0 4 0
0 0 0 0 5
|
6 | Pass |
n = 6;
y_correct = [1 0 0 0 0 0;0 2 0 0 0 0;0 0 3 0 0 0; 0 0 0 4 0 0; 0 0 0 0 5 0; 0 0 0 0 0 6]
assert(isequal(special_eye(n),y_correct))
y_correct =
1 0 0 0 0 0
0 2 0 0 0 0
0 0 3 0 0 0
0 0 0 4 0 0
0 0 0 0 5 0
0 0 0 0 0 6
ans =
1 0 0 0 0 0
0 2 0 0 0 0
0 0 3 0 0 0
0 0 0 4 0 0
0 0 0 0 5 0
0 0 0 0 0 6
|
747 Solvers
Return elements unique to either input
475 Solvers
Matlab Basics - Convert a row vector to a column vector
300 Solvers
Sum all integers from 1 to 2^x
63 Solvers
145 Solvers