Creating triangular matrix from a vector (with a twist)
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a vector v=[a b c d] and I want to (efficiently) create a matrix of the form : M=[a 0 0 0 ; b a 0 0 ; c b a 0 ; d c b a ]. I am experimenting with "diag" function but it does not seem to be very efficient. Any thoughts?
0 Commenti
Risposta accettata
Matt J
il 7 Set 2015
>> toeplitz([1 2 3 4],[1,0,0,0])
ans =
1 0 0 0
2 1 0 0
3 2 1 0
4 3 2 1
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!