如何在 Python 中绘制用 def 定义的函数?(Matplotlib)
matplotlibpythondata visualization
要在 Python 中绘制用 def 定义的函数,我们可以采取以下步骤 -
- 设置图形大小并调整子图之间和周围的填充。
- 使用 def 创建用户定义函数,即 f(x)。
- 使用 numpy 创建 x 数据点。
- 使用 plot() 方法绘制 x 和 f(x)。
- 要显示图形,请使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True def f(x): return np.sin(x) + x + x * np.sin(x) x = np.linspace(-10, 10, 100) plt.plot(x, f(x), color='red') plt.show()