How to make a big tridiagonal matrix with matrices?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How can I make a matrix H from two smaller matrices
as shown in the attached image?

0 Commenti
Risposta accettata
David Hill
il 1 Set 2020
h=size(H0);
a=[H0,zeros(h);zeros(h),H0];
b=[zeros(h),H1;H1,zeros(h)];
H=blkdiag(a,a,a,a,a,a)+blkdiag(b,b,b,b,b,b)+blkdiag(zeros(h),b,b,b,b,b,zeros(h));
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices 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!