4

我是新来的,在 python 和 matplotlib 上也是新的。

我想创建一个代码,允许我从函数定义中获取坐标(event.xdata),以便以后可以使用该数据。但是到目前为止,我已经能够阅读,一些变量是局部变量(函数内部的变量),而其他变量是全局变量(我们想要“稍后”使用的变量)。我尝试使用我也读过的“全局”选项不是最好的,但它没有用......解决方案当然可能是从定义的拾取函数返回值......问题是我必须创建一个从函数接收返回的变量...但由于这是一个事件(不是简单的函数),我不能要求变量接收返回,因为它是在绘制绘图后发生的事件。可能应该(?)类似于:

import matplotlib.pyplot as plt
import numpy as np

asd = () #<---- i need to create a global variable before i can return a value in it? 
fig = plt.figure()
def on_key(event):
    print('you pressed', event.key, event.xdata, event.ydata)
    N=event.xdata
    return N in asd #<---- i want to return N into asd

cid = fig.canvas.mpl_connect('key_press_event', on_key)
lines, = plt.plot([1,2,3])
NAAN=on_key(event) #<---- just to try if return alone worked... but on_key is a function which happens in the plot event... so no way to take the info from the return
plt.show()
4

1 回答 1

4

您可以使用可变对象和闭包来做到这一点:

mutable_object = {} 
fig = plt.figure()
def on_key(event):
    print('you pressed', event.key, event.xdata, event.ydata)
    N=event.xdata
    mutable_object['key'] = N

然后,您可以通过

N = mutable_object['key']

使用它,您也可以使用listand来执行此操作append,或者创建自己的类等。

于 2013-02-22T20:59:40.887 回答