You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
206 B
16 lines
206 B
C31 = sparse(6,6);
|
|
C32 = sparse(6,6);
|
|
C31(1,2)=1;
|
|
C31(1,4)=1;
|
|
C31(1,5)=1;
|
|
C32(1,1)=1;
|
|
C32(1,2)=1;
|
|
C31(2,3)=1;
|
|
C31(2,5)=1;
|
|
C32(2,3)=1;
|
|
C31(5,4)=1;
|
|
C31(5,5)=1;
|
|
C32(5,6)=1;
|
|
C31(6,3)=1;
|
|
C31(6,6)=1;
|
|
C32(6,5)=1;
|