construct a lower triangular matrix with smaller matrices
Afficher commentaires plus anciens
Hi all,
I'm looking for an algorithm to compute a lower triangular matrix made out of smaller, non-symmetric matrices, e.g. like:
A = [...
1 2
3 4
5 6
];
B = [...
0 0 0
A 0 0
A A 0
A A A
];
Anyone can help? (Matlab 2015b btw)
1 commentaire
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Logical 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!