首页 > 其他 > 详细

numpy array_split()

时间:2017-07-07 23:20:42      阅读:453      评论:0      收藏:0      [点我收藏+]
numpy.array_split(ary, indices_or_sections, axis=0)[source]

Split an array into multiple sub-arrays.

Please refer to the split documentation. The only difference between these functions is that array_split allows indices_or_sections to be an integer that does not equally divide the axis.

See also

split
Split array into multiple sub-arrays of equal size.

Examples

>>> x = np.arange(8.0)
>>> np.array_split(x, 3)
    [array([ 0.,  1.,  2.]), array([ 3.,  4.,  5.]), array([ 6.,  7.])]

numpy array_split()

原文:http://www.cnblogs.com/qinduanyinghua/p/7134346.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!