numpy科学计算库
Posted Dreamkily
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了numpy科学计算库相关的知识,希望对你有一定的参考价值。
1 import numpy as np 2 vector = numpy.array([5,10,15,20]) 3 matrix = numpy.array([[5,10,15],[20,25,30],[35,40,45]]) 4 print(vector) 5 print(matrix) 6 print(vector.shape) 7 vector = numpy.array([5,10,15,20]) 8 matrix = numpy.array([[5,10,15],[20,25,30],[35,40,45]]) 9 print(vector) 10 print(matrix) 11 print(vector.shape) 12 print(np.ones((2,3,4),dtype = np.int32)) 13 14 print(np.linspace(0,2,100))
以上是关于numpy科学计算库的主要内容,如果未能解决你的问题,请参考以下文章