我用matplotlib画了一个图,怎么用sympy equation作为图例的标签?让我们假设我有这个数学表达式:Eq如何在matplotlib中的图的图例中显示此数学表达式?
xuo3flqw1#
你在找sympy.latex吗?因为Matplotlib支持writing mathematical expressions。
sympy.latex
import matplotlib.pyplot as plt from sympy import Eq, latex, symbols eq = sympy.latex(Eq(symbols("beta"), 0.9)) x, y = [1, 2, 3], [2, 4, 6] plt.plot(x, y, label=f"${eq}$") plt.legend() plt.show();
输出:
1条答案
按热度按时间xuo3flqw1#
你在找
sympy.latex
吗?因为Matplotlib支持writing mathematical expressions。输出: