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))
|
Find the sum of the elements in the "second" diagonal
994 Solvers
Do Fast Fourier Transformation
221 Solvers
369 Solvers
Side of an equilateral triangle
2595 Solvers
Max Change in Consecutive Elements
89 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!