美文网首页
shape reshape

shape reshape

作者: fan的心情记录 | 来源:发表于2020-02-23 12:03 被阅读0次

    参考:https://blog.csdn.net/u010916338/article/details/84066369

    shape是查看数据有多少行多少列.

    a = np.array([[1,2,3,4],[5,6,7,8]]) #二维数组

    print(a.shape[0])  #值为2,最外层矩阵有2个元素,2个元素还是矩阵。

    print(a.shape[1])  #值为4,内层矩阵有4个元素。

    print(a.shape[2])  #IndexError: tuple index out of range  

    reshape()是数组array中的方法,作用是将数据重新组织

    reshape(-1,1) 变为一列 行数根据实际情况定

    reshape(1,-1) 变为一行 列数根据实际情况定

    相关文章

      网友评论

          本文标题:shape reshape

          本文链接:https://www.haomeiwen.com/subject/qftjqhtx.html