利用python画圆
作者:互联网
利用参数方程画圆
最近在学习python的numpy模块和matplotlib模块,在学习画圆的过程中也查询了很多资料,下面就给大家介绍一个十分简单的画圆方法,知识需要用到高中所学的参数方程。以下代码都是在jupyter notebook中实现的。
%matplotlib notebook
import numpy as np
import matplotlib.pyplot as plt
# a,b分别代表圆心坐标,r代表半径
def circle(a,b,r):
ɑ = np.arange(0,2 * np.pi,0.01)
x = a + r * np.cos(ɑ)
y = b + r * np.sin (ɑ)
fig = plt.figure()
ax = fig.add_subplot(111)
plt.plot(x,y)
plt.axis('scaled')
plt.show()
circle(2,2,2)
结果如下图所示:
标签:plt,python,matplotlib,利用,画圆,np,import,fig 来源: https://blog.csdn.net/m0_50746433/article/details/115569064