```python
import matplotlib.pyplot as plt
def plot_circle(radius):
circle = plt.Circle((0, 0), radius, color='blue', fill=False)
fig, ax = plt.subplots()
ax.add_artist(circle)
ax.set_xlim(radius 1, radius 1)
ax.set_ylim(radius 1, radius 1)
ax.set_aspect('equal', adjustable='box')
plt.title(f"Circle with radius {radius}")
plt.xlabel("Xaxis")
plt.ylabel("Yaxis")
plt.grid(True)
plt.show()
radius = 5 设置圆形半径
plot_circle(radius)
```
这段代码演示了如何使用Python中的Matplotlib库绘制简单的圆形。我们导入了Matplotlib库。我们定义了一个函数`plot_circle`,该函数接受圆形的半径作为参数。
在`plot_circle`函数中,我们创建了一个圆形对象`circle`,并将其添加到绘图轴(Axes)中。我们通过调整绘图轴的范围和设置它们的长宽比来确保圆形呈现为真实的圆形。我们设置了绘图的、X轴和Y轴标签,并打开了网格以增强可视化效果。我们调用`plt.show()`函数显示绘制的圆形。
在主代码中,我们定义了圆形的半径为5,并调用`plot_circle`函数以绘制具有该半径的圆形。您可以根据需要修改半径的值以绘制不同大小的圆形。
文章已关闭评论!
2024-11-26 09:35:57
2024-11-26 09:34:42
2024-11-26 09:33:35
2024-11-26 09:32:19
2024-11-26 09:30:57
2024-11-26 09:29:41
2024-11-26 09:28:14
2024-11-26 09:27:06