how to create matrix?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
node = 3;
i want this matrix logically
0 1 1
1 0 1
1 1 0
please help to generate this
0 commentaires
Réponse acceptée
Plus de réponses (1)
Robert Brown
le 18 Avr 2021
you can specify the elements of a 3x3 matrix as follows:
>> a = [1 2 3; 4 5 6; 7 8 9]
the result will be
a =
1 2 3
4 5 6
7 8 9
with the correct order of 1's and 0's, you should be able to build the arrays you wish to have...
I hope this helps :-)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!