Toeplitz Matrix
Show older comments
Hallo all, I'm trying to create this matrix (Toeplitz Matrix):
1 0 0 0
2 1 0 0
3 2 1 0
0 3 2 1
0 0 3 2
0 0 0 3 how can I achieve that ?
thanks for help
Accepted Answer
More Answers (2)
Oleg Komarov
on 13 May 2011
toeplitz([1 2 3 0 0 0],[1 0 0 0])
1 Comment
hunterilmenau Abdulkarim
on 13 May 2011
hunterilmenau Abdulkarim
on 13 May 2011
0 votes
1 Comment
Sibo Van Gool
on 8 Oct 2021
For a more generalized version:
t = toeplitz([h zeros(1,length(h)-1)],[h(1) zeros(1, length(h)-1)])
Categories
Find more on Linear Algebra in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!