代码
import matplotlib.pyplot as plt
import numpy as np
radius = 10 # 半径的长度
center = np.array([0,0]) # 圆心的坐标
t = np.linspace(0, 2 * np.pi, 100)
x = center[0] + radius * np.cos(t)
y = center[1] + radius * np.sin(t)
plt.figure(figsize=(5,5))
plt.plot(x,y)
plt.show()
运行结果:
参考链接:
(15条消息) 对numpy中的linespace的理解_numpy的linespace_枪枪枪的博客-CSDN博客
Matplotlib Pyplot | 菜鸟教程 (runoob.com)