hsplit专题

NumPy(七):拆分【hsplit】【vsplit】

数组拆分:输出结果为列表,列表中元素为数组 numpy.hsplit(ary, indices_or_sections):将数组水平(逐列)拆分为多个子数组 → 按列拆分numpy.vsplit(ary, indices_or_sections)::将数组垂直(行方向)拆分为多个子数组 → 按行拆 import numpy as np# 数组拆分:输出结果为列表,列表中元素为数组ar = np