Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Split and combine arrays

Continue with the 4x4 array created in the Array slicing exercise.

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