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))
|
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))
|
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))
|
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))
|
579 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Find last zero for each column
239 Solvers
521 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!