Toeplitz Matrix
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (2)
Oleg Komarov
le 13 Mai 2011
toeplitz([1 2 3 0 0 0],[1 0 0 0])
hunterilmenau Abdulkarim
le 13 Mai 2011
0 votes
1 commentaire
Sibo Van Gool
le 8 Oct 2021
For a more generalized version:
t = toeplitz([h zeros(1,length(h)-1)],[h(1) zeros(1, length(h)-1)])
Catégories
En savoir plus sur Linear Algebra dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!