本文简要介绍 python 语言中 numpy.split
的用法。
用法:
numpy.split(ary, indices_or_sections, axis=0)
将数组拆分为多个子数组作为 ary 中的视图。
- ary: ndarray
数组被划分为子数组。
- indices_or_sections: int 或一维数组
如果indices_or_sections是整数N,则数组将沿轴分为N个相等的数组。如果无法进行这样的拆分,则会引发错误。
如果indices_or_sections是排序整数的一维数组,条目指示沿轴数组被拆分。例如,
[2, 3]
会,因为axis=0
, 造成ary[:2]
阿里[2:3]
阿里[3:]
如果索引超出了数组沿轴的维度,则相应地返回一个空的sub-array。
- axis: 整数,可选
要分割的轴,默认为 0。
- sub-arrays: ndarrays 列表
作为 ary 视图的子数组列表。
- ValueError
如果 indices_or_sections 以整数形式给出,但拆分不会导致等分。
参数:
返回:
抛出:
例子:
>>> x = np.arange(9.0) >>> np.split(x, 3) [array([0., 1., 2.]), array([3., 4., 5.]), array([6., 7., 8.])]
>>> x = np.arange(8.0) >>> np.split(x, [3, 5, 6, 10]) [array([0., 1., 2.]), array([3., 4.]), array([5.]), array([6., 7.]), array([], dtype=float64)]
相关用法
- Python numpy spacing用法及代码示例
- Python numpy searchsorted用法及代码示例
- Python numpy shape用法及代码示例
- Python numpy scimath.log用法及代码示例
- Python numpy signbit用法及代码示例
- Python numpy setdiff1d用法及代码示例
- Python numpy seterr用法及代码示例
- Python numpy sort用法及代码示例
- Python numpy scimath.logn用法及代码示例
- Python numpy square用法及代码示例
- Python numpy std用法及代码示例
- Python numpy scimath.log2用法及代码示例
- Python numpy sum用法及代码示例
- Python numpy seterrobj用法及代码示例
- Python numpy squeeze用法及代码示例
- Python numpy scimath.arccos用法及代码示例
- Python numpy shares_memory用法及代码示例
- Python numpy s_用法及代码示例
- Python numpy swapaxes用法及代码示例
- Python numpy sctype2char用法及代码示例
- Python numpy show_config用法及代码示例
- Python numpy set_printoptions用法及代码示例
- Python numpy source用法及代码示例
- Python numpy save用法及代码示例
- Python numpy scimath.log10用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.split。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。