Numpy入門02---ndarray多維數組對象(上)

NumPy的核心特徵之一就是N-維數組對象——ndarray。該數組容許你使用相似於標量的操做語法在整塊數據上進行數學計算。python 接下來讓咱們舉個例子感覺一下:數組 #!/usr/bin/python # -*- coding: UTF-8 -*- import numpy as np # 生成隨機數組 data = np.random.randn(2,3) print(data) #
相關文章
相關標籤/搜索