Return an n-by-n matrix that has a, b, c as the subdiagonal, main diagonal, and superdiagonal entries in the matrix.
Example
a=1 b=2 c=3 n=5 T = [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]
did you mean n=4 and not d=4?? ;-)
it seems that the test code is broken n!=d
I fixed the test suite so that n is used instead of d.
Additional test cases have been added.
543 Solvers
Project Euler: Problem 7, Nth prime
339 Solvers
171 Solvers
1392 Solvers
Matlab Basics - y as a function of x
241 Solvers