How can I create a simple matrix of 4 by 4 using a "for" loop. to make a diagnol of 1's starting from top right to bottom left?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Not sure where to start this is my second time using MATLAB, thanks!
1 commentaire
Réponses (3)
Michael Joslin
le 24 Jan 2013
Modifié(e) : Michael Joslin
le 24 Jan 2013
Heres a way to do it without a for loop if your interested:
a = ones(4); a = diag(diag(a)); rot90(a)
This might not be too helpful if all of your other elements are not zero.
0 commentaires
Sean de Wolski
le 24 Jan 2013
Modifié(e) : Sean de Wolski
le 24 Jan 2013
I = fliplr(eye(4));
2 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!