用matplotlib画一个三维曲线
时间: 2023-10-17 17:18:44 浏览: 173
以下是一个使用matplotlib绘制三维曲线的示例代码:
```python
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
# 定义曲线函数
def f(x, y):
return np.sin(np.sqrt(x**2 + y**2))
# 生成x,y坐标的网格
x = np.linspace(-5, 5, 50)
y = np.linspace(-5, 5, 50)
X, Y = np.meshgrid(x, y)
# 计算z坐标
Z = f(X, Y)
# 绘制三维曲线
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.plot_surface(X, Y, Z)
# 设置坐标轴标签
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')
# 显示图形
plt.show()
```
运行这段代码,将会得到一个绘制了三维曲线的图形。
阅读全文