摘要: a=np.array([1,2,3,4,5,6]) a=a.reshape([2,-1]) # -1:表示3,此处将a数组设置为2行3列 a[1,2]=66 # 把a的6改成66 a=np.zeros((3,2)) # 3行2列的矩阵,矩阵元素为0 a=np.ones((3,2)) # 3行2列的矩 阅读全文
posted @ 2019-01-02 21:23 Jary霸 阅读(135) 评论(0) 推荐(0) 编辑