array_split.split.array_split¶
-
array_split.split.array_split(ary, indices_or_sections=None, axis=None, tile_shape=None, max_tile_bytes=None, max_tile_shape=None, sub_tile_shape=None, halo=None)[source]¶ Splits the specified array
aryinto sub-arrays, returns list ofnumpy.ndarray.Parameters: - ary (
numpy.ndarray) – Array which is split into sub-arrays. - indices_or_sections (
None,intor sequence ofint) – If an integer, indicates the number of elements in the calculated split array. If a sequence, indicates the indices (per axis) at which the splits occur. See Splitting by number of tiles examples. - axis (
None,intor sequence ofint) – If an integer, indicates the axis which is to be split. If a sequence integers, indicates the number of slices per axis, i.e. ifaxis = [3, 5]then axis0is cut into 3 slices and axis1is cut into 5 slices for a total of 15 (3*5) rectangular slices in the returned(3, 5)shaped split. See Splitting by number of tiles examples and Splitting by per-axis cut indices examples. - tile_shape (
Noneor sequence ofint) – When notNone, specifies explicit shape for tiles. Should be same length asarray_shape. See Splitting by tile shape examples. - max_tile_bytes (
Noneorint) – The maximum number of bytes for calculatedtile_shape. See Splitting by maximum bytes per tile examples. - max_tile_shape (
Noneor sequence ofint) – Per axis maximum shapes for the calculatedtile_shape. Only relevant whenmax_tile_bytesis specified. Should be same length asarray_shape. See Splitting by maximum bytes per tile examples. - sub_tile_shape (
Noneor sequence ofint) – When notNone, the calculatedtile_shapewill be an even multiple of this sub-tile shape. Only relevant whenmax_tile_bytesis specified. Should be same length asarray_shape. See Splitting by maximum bytes per tile examples. - halo (
None,int, sequence ofint, or(len(ary.shape), 2)shapednumpy.ndarray) – How tiles are extended per axis in -ve and +ve directions with halo elements. See The halo parameter examples.
Return type: Returns: List of
numpy.ndarrayelements, where each element is a slice fromary(potentially an empty slice).- ary (