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
Solution Comments
Show comments
Loading...
Problem Recent Solvers176
Suggested Problems
-
Return the largest number that is adjacent to a zero
5543 Solvers
-
Number of 1s in the Binary Representation of a Number
484 Solvers
-
Test if a Number is a Palindrome without using any String Operations
257 Solvers
-
721 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
602 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!
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.
great!