码迷,mamicode.com
首页 > 编程语言 > 详细

python reshape(-1,1)

时间:2017-09-24 23:37:29      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:www.   inf   visible   获得   main   pat   scipy   lin   invisible   

一个数组的(行数,列数) 组成了一个shape。 比如4x4 数组。可以reshape成(16,1)(8,2)(4,4)(2,8)(1,16)等。有时候不知道数组目前的行数和列数。但是要转换成特定的列数。可以用-1 代替未知的 

比如4x4 转换成16x1的可以写成array.reshape(-1,1).

如以下知乎详细

作者:李彬
链接:https://www.zhihu.com/question/52684594/answer/157491724
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

numpy.reshape(a, newshape, order=‘C‘)[source],参数`newshape`是啥意思?

根据Numpy文档()的解释:

newshape : int or tuple of ints
The new shape should be compatible with the original shape. If an integer, then the result will be a 1-D array of that length. One shape dimension can be -1. In this case, **the value is inferred from the length of the array and remaining dimensions**.

大意是说,数组新的shape属性应该要与原来的配套,如果等于-1的话,那么Numpy会根据剩下的维度计算出数组的另外一个shape属性值。

举几个例子或许就清楚了,有一个数组z,它的shape属性是(4, 4)

z = np.array([[1, 2, 3, 4],
          [5, 6, 7, 8],
          [9, 10, 11, 12],
          [13, 14, 15, 16]])
z.shape
(4, 4)
z.reshape(-1)
z.reshape(-1)
array([ 1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, 16])
z.reshape(-1, 1)

也就是说,先前我们不知道z的shape属性是多少,但是想让z变成只有一列,行数不知道多少,通过`z.reshape(-1,1)`,Numpy自动计算出有12行,新的数组shape属性为(16, 1),与原来的(4, 4)配套。

z.reshape(-1,1)
 array([[ 1],
        [ 2],
        [ 3],
        [ 4],
        [ 5],
        [ 6],
        [ 7],
        [ 8],
        [ 9],
        [10],
        [11],
        [12],
        [13],
        [14],
        [15],
        [16]])
 
z.reshape(-1, 2)

newshape等于-1,列数等于2,行数未知,reshape后的shape等于(8, 2)

 z.reshape(-1, 2)
 array([[ 1,  2],
        [ 3,  4],
        [ 5,  6],
        [ 7,  8],
        [ 9, 10],
        [11, 12],
        [13, 14],
        [15, 16]])
 

同理,只给定行数,newshape等于-1,Numpy也可以自动计算出新数组的列数。

----------

python reshape(-1,1)

标签:www.   inf   visible   获得   main   pat   scipy   lin   invisible   

原文地址:http://www.cnblogs.com/uxiuxi/p/7588916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!