What does this code give o/p as?

1 次查看(过去 30 天)
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 个评论
Geoff Hayes
Geoff Hayes 2021-5-14
Shruthi - you may need to provide some context. What are you hoping that this code will do?
Shruthi S
Shruthi S 2021-5-15
I was just trying random key generation

请先登录,再进行评论。

采纳的回答

DGM
DGM 2021-5-14
编辑:DGM 2021-5-14
If you're asking what the output is (maybe you're away from a computer with Matlab at the moment)
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
orig_key = 8×8
0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 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
I ran this using the tools in the editor used to make this post. I didn' have to even use Matlab. There is also a web-accessible version of Matlab available.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by