Problem 1812. Tridiagonal
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]
Solution Stats
Problem Comments
-
5 Comments
Show
2 older comments
J.R.! Menzinger
on 14 Aug 2013
did you mean n=4 and not d=4?? ;-)
Nicolae Preda
on 14 Aug 2013
it seems that the test code is broken n!=d
Ned Gulley
on 15 Aug 2013
I fixed the test suite so that n is used instead of d.
goc3
on 15 Mar 2017
Additional test cases have been added.
Robert Ritter
on 13 Dec 2021
great!
Solution Comments
Show commentsProblem Recent Solvers169
Suggested Problems
-
Replace NaNs with the number that appears to its left in the row.
3059 Solvers
-
How to find the position of an element in a vector without using the find function
2809 Solvers
-
The Hitchhiker's Guide to MATLAB
3398 Solvers
-
Arrange vector in ascending order
812 Solvers
-
Calculate Amount of Cake Frosting
28736 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!