Toeplitz Matrix
古いコメントを表示
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
採用された回答
その他の回答 (2 件)
hunterilmenau Abdulkarim
2011 年 5 月 13 日
0 投票
1 件のコメント
Sibo Van Gool
2021 年 10 月 8 日
For a more generalized version:
t = toeplitz([h zeros(1,length(h)-1)],[h(1) zeros(1, length(h)-1)])
カテゴリ
ヘルプ センター および File Exchange で Linear Algebra についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!