gpt4 book ai didi

python - 基于 Tkinter 和 matplotlib 的交互式绘图

转载 作者:太空宇宙 更新时间:2023-11-03 14:31:32 25 4
gpt4 key购买 nike

亲爱的编程社区,

我正在尝试基于 Tkinter 和 pylab.plot 执行“交互式绘图”以绘制一维值。 absissa 是一维 numpy 数组 x,ordonates 值在多维数组 Y 中,例如。

import numpy
x = numpy.arange(0.0,3.0,0.01)
y = numpy.sin(2*numpy.pi*x)
Y = numpy.vstack((y,y/2))

我想根据 x 显示 y 或 y/2(Y 矩阵的元素),并用左右两个按钮在它们之间切换(以便处理更复杂的情况)。通常我会创建如下所示的一些函数来绘制图形。

import pylab
def graphic_plot(n):
fig = pylab.figure(figsize=(8,5))
pylab.plot(x,Y[n,:],'x',markersize=2)
pylab.show()

要添加两个按钮来更改n参数的值,我已经尝试过但没有成功:

import Tkinter
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
class App:
def __init__(self,master):
# Create a container
frame = Tkinter.Frame(master)
frame.pack()
# Create 2 buttons
self.button_left = Tkinter.Button(frame,text="<",command=self.decrease)
self.button_left.pack(side="left")
self.button_right = Tkinter.Button(frame,text=">",command=self.increase)
self.button_right.pack(side="left")
self.canvas = FigureCanvasTkAgg(fig,master=self)
self.canvas.show()
def decrease(self):
print "Decrease"
def increase(self):
print "Increase"
root = Tkinter.Tk()
app = App(root)
root.mainloop()

有人可以帮助我了解如何执行此类功能吗?非常感谢。

最佳答案

要更改直线的 y 值,请保存绘制它时返回的对象 (line, = ax.plot(...)),然后使用 line。 set_ydata(...)。要重新绘制绘图,请使用 canvas.draw()

作为基于您的代码的更完整示例:

import Tkinter
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
from matplotlib.figure import Figure

class App:
def __init__(self, master):
# Create a container
frame = Tkinter.Frame(master)
# Create 2 buttons
self.button_left = Tkinter.Button(frame,text="< Decrease Slope",
command=self.decrease)
self.button_left.pack(side="left")
self.button_right = Tkinter.Button(frame,text="Increase Slope >",
command=self.increase)
self.button_right.pack(side="left")

fig = Figure()
ax = fig.add_subplot(111)
self.line, = ax.plot(range(10))

self.canvas = FigureCanvasTkAgg(fig,master=master)
self.canvas.show()
self.canvas.get_tk_widget().pack(side='top', fill='both', expand=1)
frame.pack()

def decrease(self):
x, y = self.line.get_data()
self.line.set_ydata(y - 0.2 * x)
self.canvas.draw()

def increase(self):
x, y = self.line.get_data()
self.line.set_ydata(y + 0.2 * x)
self.canvas.draw()

root = Tkinter.Tk()
app = App(root)
root.mainloop()

关于python - 基于 Tkinter 和 matplotlib 的交互式绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9997869/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com