Python的Matplotlib.pyplot中的三维参数曲线的线条颜色
要在Matplotlib中绘制三维参数曲线的线条颜色,可以执行以下步骤−
- 设置图像大小并调整子图之间和周围的填充。
-
使用 figure() 方法创建一个新图像或激活现有图像。
-
添加一个轴作为子图排列。
-
为了制作参数曲线,初始化 theta, z, r, x 和 y 变量。
-
使用 scatter() 方法绘制 x, y 和 z 数据点。
-
设置图的标题。
-
使用 show() 方法来显示图像。
示例
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
ax = fig.add_subplot(projection='3d')
theta = np.linspace(-4 * np.pi, 4 * np.pi, 100)
z = np.linspace(-2, 2, 100)
r = z ** 2 + 1
x = r * np.sin(theta)
y = r * np.cos(theta)
ax.scatter(x, y, z, c=x, cmap="copper")
ax.set_title("参数曲线")
plt.show()