使用Matplotlib的pyplot.plot()绘制参数曲线
使用 pyplot.plot() 绘制参数曲线,可以执行以下步骤:
- 设置图形大小并调整子图之间和周围的填充。
- 初始化一个变量 N 来表示样本数。
- 使用Numpy创建 t, r, x 和 y 数据点。
- 创建一个图形和一组子图。
- 使用 plot() 方法绘制 x 和 y 数据点。
- 使用 show() 方法显示图形。
示例
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
N = 400
t = np.linspace(0, 2 * np.pi, N)
r = 0.5 + np.cos(t)
x, y = r * np.cos(t), r * np.sin(t)
fig, ax = plt.subplots()
ax.plot(x, y)
plt.show()