how to create matrix?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ankanna
el 18 de Abr. de 2021
Comentada: ankanna
el 24 de Abr. de 2021
node = 3;
i want this matrix logically
0 1 1
1 0 1
1 1 0
please help to generate this
0 comentarios
Respuesta aceptada
Más respuestas (1)
Robert Brown
el 18 de Abr. de 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 :-)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!