Toeplitz Matrix
Mostra commenti meno recenti
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
Risposta accettata
Più risposte (2)
Oleg Komarov
il 13 Mag 2011
toeplitz([1 2 3 0 0 0],[1 0 0 0])
1 Commento
hunterilmenau Abdulkarim
il 13 Mag 2011
hunterilmenau Abdulkarim
il 13 Mag 2011
0 voti
1 Commento
Sibo Van Gool
il 8 Ott 2021
For a more generalized version:
t = toeplitz([h zeros(1,length(h)-1)],[h(1) zeros(1, length(h)-1)])
Categorie
Scopri di più su Linear Algebra in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!