python numpy庫(kù)學(xué)習(xí)筆記1
安裝
pip install numpy
導(dǎo)入
import numpy
numpy用法
創(chuàng)建數(shù)組(array對(duì)象)
創(chuàng)建自定義的數(shù)組或矩陣
array = numpy.array(object, dtype)
object:創(chuàng)建數(shù)組或矩陣
dtype:定義類型(numpy.int? ?numpy.float等等)
創(chuàng)建全為零的數(shù)組或矩陣
array?=?numpy.zeros((行,列), dtype)
創(chuàng)建全為一的數(shù)組或矩陣
array?=?numpy.ones((行,列), dtype)
創(chuàng)建范圍均等分割的數(shù)組
numpy.linspace(開始的數(shù)值, 結(jié)束的數(shù)值, 分割份數(shù))
array對(duì)象
基本屬性
array.size 數(shù)組的大小
array.ndim 數(shù)組的維度
array.shape 數(shù)字具體形狀
基本操作
array.reshape((行,列))修改數(shù)組長(zhǎng)寬
學(xué)習(xí)教程來源:BV1Ex411L7oT
標(biāo)簽: