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 |
a = 1;
b = 2;
c = 3;
n = 5;
y_correct = [ 2 3 0 0 0;
1 2 3 0 0;
0 1 2 3 0;
0 0 1 2 3;
0 0 0 1 2];
assert(isequal(tridiag(a, b, c, n),y_correct))
ans =
2 3 0 0 0
1 2 3 0 0
0 1 2 3 0
0 0 1 2 3
0 0 0 1 2
|
2 | Pass |
a = 9;
b = 5;
c = -17;
n = 3;
y_correct = [ 5 -17 0 ;
9 5 -17 ;
0 9 5 ];
assert(isequal(tridiag(a, b, c, n),y_correct))
ans =
5 -17 0
9 5 -17
0 9 5
|
3 | Pass |
a = 4;
b = -1;
c = 8;
n = 4;
y_correct = [-1 8 0 0;
4 -1 8 0;
0 4 -1 8;
0 0 4 -1];
assert(isequal(tridiag(a, b, c, n),y_correct))
ans =
-1 8 0 0
4 -1 8 0
0 4 -1 8
0 0 4 -1
|
4 | Pass |
a = 11;
b = 21;
c = 30;
n = 5;
y_correct = [21 30 0 0 0;
11 21 30 0 0;
0 11 21 30 0;
0 0 11 21 30;
0 0 0 11 21];
assert(isequal(tridiag(a, b, c, n),y_correct))
ans =
21 30 0 0 0
11 21 30 0 0
0 11 21 30 0
0 0 11 21 30
0 0 0 11 21
|
651 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
How many trades represent all the profit?
520 Solvers
559 Solvers
147 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!