First, create a 4x4 array with arbitrary values, then
- Extract every element from the second row.
- Extract every element from the third column.
- Assign a value of 0.21 to upper left 2x2 subarray.
Next, create a 8x8 array with checkerboard pattern, i.e. alternating zeros and ones:
1 0 1 ...
0 1 0 ...
1 0 1 ...
...