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))
|
2261 Solvers
How many trades represent all the profit?
520 Solvers
135 Solvers
485 Solvers
Matlab Basics II - Count rows in a matrix
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!