python中的交互式颜色栏

时间:2019-01-21 14:58:10

标签: python plot

我有这个产生以下图的MWE:

import numpy as np
import matplotlib.pyplot as plt

def func(x,y):
    return -x*x - y*y

nx = 100
x = np.linspace(-10, 10, nx)
y = np.linspace(-10, 10, nx)
xv, yv = np.meshgrid(x, y)
values = func(xv, yv)

fig = plt.figure(figsize = (15,6))
ax = fig.add_subplot(111)
plt.imshow(values, cmap = 'Blues')
plt.colorbar()

enter image description here

我知道如何更改代码中色条的限制。

但是我想知道在绘图上是否可以有一个交互式标记,可以实时更改颜色条的水平?
还是我必须使用Qt使其成为GUI?

0 个答案:

没有答案