Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 385 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 385 Bytes

Split and combine arrays

Create a new 8x8 array with some values (or continue with the one created in the Array slicing exercise).

  1. Use np.split() function for splitting the array into two new 4x8 arrays. Reconstruct the original 8x8 array by using np.concatenate().
  2. Repeat the above exercise but create now 8x4 subarrays and then combine them.