用plt.axes画一个平面
时间: 2023-07-20 07:12:44 浏览: 113
Python+matplotlib+numpy实现在不同平面的二维条形图
好的,以下是使用Matplotlib库的axes方法绘制平面的示例代码:
```python
import matplotlib.pyplot as plt
# 创建平面
fig = plt.figure()
ax = fig.add_subplot(111)
# 绘制平面
ax.plot([0, 1], [0, 1])
# 显示图形
plt.show()
```
这段代码会绘制一个从 (0, 0) 到 (1, 1) 的平面。你可以根据需要修改 x 轴和 y 轴的坐标范围,以及绘制的线条样式和颜色。
阅读全文