Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% Test 1
x = 5;
y_correct = [0 0 0 0 0;0 1 0 0 0; 0 0 1 0 0; 0 0 0 1 0;0 0 0 0 0];
assert(isequal(eye_first_last(x),y_correct))
ans =
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
ans =
0 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 1 0
0 0 0 0 1
ans =
0 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 1 0
0 0 0 0 0
|
2 | Pass |
%% Test 2
x = 2;
y_correct = [0 0;0 0];
assert(isequal(eye_first_last(x),y_correct))
ans =
1 0
0 1
ans =
0 0
0 1
ans =
0 0
0 0
|
3 | Pass |
%% Test 3
x=1;
y_correct = [0];
assert(isequal(eye_first_last(x),y_correct))
ans =
1
ans =
0
ans =
0
|
4 | Pass |
%% Test 4
x=3;
y_correct = [0 0 0;0 1 0;0 0 0];
assert(isequal(eye_first_last(x),y_correct))
ans =
1 0 0
0 1 0
0 0 1
ans =
0 0 0
0 1 0
0 0 1
ans =
0 0 0
0 1 0
0 0 0
|
298 Solvers
Given a matrix, return the last eigen value
137 Solvers
477 Solvers
194 Solvers
271 Solvers