- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
随着样本数量的增加(从 100 到 1000),我试图使形状的动画呈现指数分布。还有一个用于配置分布的 lambda 参数的 slider 和一个用于启动动画的按钮。
我的问题是,即使布局被渲染,当我按下开始按钮时也没有动画发生。这是我迄今为止的尝试:
为了简化事情而进行了编辑,我在 Python 笔记本中运行它:
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from matplotlib.widgets import Slider
n0 = 100
n1 = 1000
#Create figure object
fig, ax = plt.subplots(1,1)
plt.subplots_adjust(bottom=0.3)
#Create Sliders for parameters
axlam = plt.axes([0.20, 0.05, 0.20, 0.03], facecolor=axcolor)
slam = Slider(axlam, 'Exp lambda', 0, 5, valinit=1)
#Default distributions
dexp = np.random.exponential(1, n1)
#Updates distributions when sliders are changed
def updateDist(val):
lam = slam.val
dexp = np.random.exponential(lam, n1)
slam.on_changed(updateDist)
#updates plot on FuncAnimation call
def update(curr):
if( curr == (n1-n0) ):
a.event.source.stop()
plt.cla()
bins_exp = np.arange(0,4/slam.val,0.25)
ax.hist(dexp[:(n0+curr)],bins=bins_exp)
ax.set_title('Exp n={}'.format(n0+curr))
#Define Start button and function to start animation
goax = plt.axes([0.8, 0.025, 0.1, 0.04])
button = Button(goax, 'Start', color=axcolor, hovercolor='0.975')
a = None
def start(event):
a = animation.FuncAnimation(fig,update,interval=100)
button.on_clicked(start)
最佳答案
您应该注意函数的 namespace 。
考虑
a = 0
def f():
a = 1
f()
print(a) # will print 0
因此,您需要处理实际对象,而不是它们的本地副本。
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from matplotlib.widgets import Slider, Button
n0 = 100
n1 = 1000
#Create figure object
fig, ax = plt.subplots(1,1)
plt.subplots_adjust(bottom=0.3)
#Create Sliders for parameters
axcolor = "skyblue"
axlam = plt.axes([0.20, 0.05, 0.20, 0.03], facecolor=axcolor)
slam = Slider(axlam, 'Exp lambda', 0, 5, valinit=1)
#Default distributions
dexp = [np.random.exponential(1, n1)]
##Updates distributions when sliders are changed
def updateDist(val):
lam = slam.val
dexp[0] = np.random.exponential(lam, n1)
slam.on_changed(updateDist)
#updates plot on FuncAnimation call
def update(curr):
if( curr == (n1-n0) ):
a.event.source.stop()
ax.clear()
bins_exp = np.arange(0,4/slam.val,0.25)
ax.hist(dexp[0][:(n0+curr)],bins=bins_exp)
ax.set_title('Exp n={}'.format(n0+curr))
fig.canvas.draw_idle()
#Define Start button and function to start animation
goax = plt.axes([0.8, 0.025, 0.1, 0.04])
button = Button(goax, 'Start', color=axcolor, hovercolor='0.975')
a = [0]
def start(event):
a[0] = animation.FuncAnimation(fig,update,interval=100)
button.on_clicked(start)
plt.show()
关于python - 动画在 matplotlib 上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44227474/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!