Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3 0 4
3 2 5 -1 0
0 0 2 3 4
3 2 5 4 0
-9 0 0 -2 -3];
k = eig(x);
y_correct = k(end);
assert(isequal(last_eig(x),y_correct))
ans =
6.7330
|
2 | Pass |
%%
x = [1 2 3
6 4 -1
-9 1 3];
k = eig(x);
y_correct = k(end);
assert(isequal(last_eig(x),y_correct))
ans =
5.6067
|
3 | Pass |
%%
x = magic(6);
k = eig(x);
y_correct = k(end);
assert(isequal(last_eig(x),y_correct))
ans =
-9.7980
|
594 Solvers
Back to basics 12 - Input Arguments
525 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
436 Solvers
find the surface area of a cube
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!