python——初始化数组
因为画图中x轴与y轴的数据通常为数组格式的数据,所以先总结⼀下如何初始化数组:
(1)list得到数组
# 通过array函数传递list对象
L = [1, 2, 3, 4, 5, 6]
a = np.array(L)
# 若传递的是多层嵌套的list,将创建多维数组
b = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])
# 可以通过dtype参数在创建时指定元素类型
d = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]], dtype=np.float)
# 如果更改元素类型,可以使⽤astype安全的转换
f = d.astype(np.int)
(2)使⽤arange
# 和Python的range类似,arange同样不包括终值;但arange可以⽣成浮点类型,⽽range只能是整数类型
# 1为开始值,10为终⽌值(不包括),0.5为步长
a = np.arange(1, 10, 0.5)
(3)使⽤ones、zeros、empty
# np.ones(shape, dtype),⽣成元素全为1(默认浮点型)的数组
# shape可以为⼀个整数得到⼀个⼀维数组,也可以为(整数1,整数2)的格式得到⼆维数组,同理可得多维数组 a = np.ones((3, 3), dtype=np.int32)
print("a: \n", a)
# np.zeros(shape, dtype),⽣成元素全为0(默认浮点型)的数组
# ⽤法与np.noes()⼀样
b = np.zeros((3, 3), dtype=np.int32)
print("b: \n", b)
# np.empty(shape, dtype),⽣成元素为随机数(默认浮点型)的数组
# ⽤法与np.ones()⼀样
c = np.empty((3, 4), dtype=np.int32)
print("c: \n", c)
# np.ones()、np.zeros()、np.empty()都具有如下形式复制⼀个结构⼀样的数组,但数据类型可选择
(4)等差数列
# linspace函数通过指定起始值、终⽌值和元素个数来创建等差数组,元素之间是等步长的
# endpoint表⽰是否包括终⽌值,默认为True
b = np.linspace(1, 10, 10,endpoint=True)
(5)等⽐数列
# 指定起始值、终⽌值、元素个数和基数来创建等⽐数列
# base表⽰基数,下式创建了⼀个1到4之间的有10个数的等⽐数列
d = np.logspace(1, 2, 10, endpoint=True, base=2)
# 基数为10,下式创建了⼀个10到100之间的有10个数的等⽐数列
d = np.logspace(1, 2, 10, endpoint=True, base=10)
(6)随机数
rand()
# 返回⼀个服从“0~1”均匀分布的随机数,该随机数在[0, 1)内,也可以返回⼀个由服从“0~1”均匀分布的随机数组成的数组。# np.random.rand(d0, d1, …, dn)
# 返回⼀个随机值,随机值在[0, 1)内
In[15]: np.random.rand()
Out[15]: 0.9027797355532956
# 返回⼀个3x3的数组,数组元素在[0, 1)内
In[16]:np.random.rand(3,3)
Out[16]:
array([[ 0.47507608, 0.64225621, 0.9926529 ],
[ 0.95028412, 0.18413813, 0.91879723],
[ 0.89995217, 0.42356103, 0.81312942]])
In[17]: np.random.rand(3,3,3)
# 返回⼀个3x3x3的数组
Out[17]:
array([[[ 0.30295904, 0.76346848, 0.33125168],
[ 0.77845927, 0.75020602, 0.84670385],
[ 0.2329741 , 0.65962263, 0.93239286]],
[[ 0.24575304, 0.9019242 , 0.62390674],
[ 0.43663215, 0.93187574, 0.75302239],
[ 0.62658734, 0.01582182, 0.66478944]],
[[ 0.22152418, 0.51664503, 0.41196781],
[ 0.47723318, 0.19248885, 0.29699868],
[ 0.11664651, 0.66718804, 0.39836448]]])
randn()
# 产⽣标准正态分布随机数或随机数组,⽤法与rand(d0, d1, …, dn)⽅法⼀样
np.random.randn(d0, d1, …, dn)
randint()
# 可以⽣成随机数,也可以⽣成多维随机数组
# np.random.randint(low, high=None, size=None, dtype=)
# [0,4)之间的随机数
In[7]: np.random.randint(4)
Out[7]: 1
# [0,4)之间的⼀维数组
linspace函数python
In[8]: np.random.randint(4,size=4)
Out[8]: array([2, 2, 2, 0])
# [4,10)之间的⼀维数组
In[9]: np.random.randint(4,10,size=6)
Out[9]: array([7, 9, 7, 8, 6, 9])
# [4,10)之间的2x2数组
np.random.randint(4,10,size=(2,2),dtype='int32')
Out[10]:
array([[7, 4],
[6, 9]])
uniform()
# 产⽣[low, high)之间的均匀分布随机数或随机数组,low默认为0.0,high默认为1.0
np.random.uniform(low=0.0, high=1.0, size=None)
normal()
# 产⽣均值为loc,⽅差为scale的服从正太分布的随机数或随机数组,loc默认为0,scale默认为1 al(loc=0.0, scale=1.0, size=None)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论