【Python】学习笔记

学习笔记

[2,3]
*[2,3] 变为 2,3 即无括号

for i in range(100):
	print(np.random.rand(2))

输出 二维0~1的数组
[0.44140353 0.98570772]
[0.34604834 0.60102605]
[0.8243352  0.82160222]

a1xy_ = np.array([1, 2])
finger = np.array([3, 4])
dist1 = np.array([5, 6])
dist2 = np.array([7, 8])
on_goal = 0
s = np.concatenate((a1xy_, finger, dist1 + dist2, [1. if on_goal else 0.]))
print(s)

b = a[i:j]   # 表示复制a[i]到a[j-1]
b = a[i:j:s]    # i,j与上面的一样,但s表示步进,缺省为1.
d=a[:-1]  #从位置0到位置-2的数 最后一个数为-1位置


'''动态双图展示1'''
a=[]
b=[]
fig, ax = plt.subplots(nrows=2, ncols=1)
# fig1, ax1 = plt.subplots()
for i in range(10):
    a.append(np.sin(i))
    b.append(np.cos(i))
    ax[0].cla()
    ax[1].cla()
    ax[0].plot(a)
    ax[1].plot(b)
    # ax1.plot(a)
    plt.pause(0.5)
plt.show()

'''动态双图展示2'''
a=[]
b=[]
fig = plt.figure()
ax1 = fig.add_subplot(211)
ax2 = fig.add_subplot(212)
# fig1, ax1 = plt.subplots()
for i in range(10):
    a.append(np.sin(i))
    b.append(np.cos(i))
    ax1.cla()
    ax2.cla()
    ax1.plot(a)
    ax2.plot(b)
    plt.pause(0.5)
plt.show()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值