This solution is outdated. To rescore this solution, sign in.
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))
|
1836 Solvers
Maximum running product for a string of numbers
1112 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
Replace Nonzero Numbers with 1
178 Solvers
206 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!