用python画一个三维曲线
时间: 2023-06-30 16:10:38 浏览: 107
python 画函数曲线示例
5星 · 资源好评率100%
可以使用matplotlib库来画三维曲线,以下是一个示例代码:
```python
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
# 定义曲线函数
def curve(x, y):
return np.sin(np.sqrt(x**2 + y**2))
# 生成数据
x = np.linspace(-5, 5, 100)
y = np.linspace(-5, 5, 100)
X, Y = np.meshgrid(x, y)
Z = curve(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()
```
运行以上代码,即可在窗口中看到一个三维曲线图。
阅读全文