2018年9月14日

Numpy 定义矩阵的方法

摘要: import numpy as np #https://www.cnblogs.com/xzcfightingup/p/7598293.html a = np.zeros((2,3),dtype=int) a = np.ones((2,3),dtype=int) a = np.eye(3)#3维单位矩阵 a = np.empty([2,3],dtype=int) a = np.rando... 阅读全文

posted @ 2018-09-14 08:51 Maddock 阅读(476) 评论(0) 推荐(0) 编辑

导航