摘要:
http://www.centoscn.com/CentOS/help/2013/0803/914.html 阅读全文
摘要:
使用numpy.zeros,numpy.ones,numpy.eye等方法可以构造特定的矩阵例如:代码如下:>>>from numpy import *>>> a=zeros((3,4))>>> aarray([[ 0., 0., 0., 0.], [ 0., 0., 0., ... 阅读全文