What does this code give o/p as?
Mostrar comentarios más antiguos
keyg=zeros(8,8);
key=[0 0 1 0 ;0 0 1 1 ;0 1 0 1; 0 1 1 1; 1 0 0 0; 1 0 1 0; 1 1 0 1; 1 0 1 1];
key1=[0 0 1 0 0 0 1 0 ;0 0 1 1 0 0 1 1 ;0 1 0 1 0 1 0 1; 0 1 1 1 0 1 1 1];
keyg(1:8,5:8)=key;
keyg(5:8,1:8)=key1;
orig_key=keyg;
2 comentarios
Geoff Hayes
el 14 de Mayo de 2021
Shruthi - you may need to provide some context. What are you hoping that this code will do?
Shruthi S
el 15 de Mayo de 2021
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!