首页 > 编程 > Python > 正文

Python实现的圆形绘制(画圆)示例

2020-01-04 16:00:46
字体:
来源:转载
供稿:网友

本文实例讲述了Python实现的圆形绘制。分享给大家供大家参考,具体如下:

# -*- coding:utf-8 -*-#! python3import numpy as npimport matplotlib.pyplot as plt# ==========================================# 圆的基本信息# 1.圆半径r = 2.0# 2.圆心坐标a, b = (0., 0.)# ==========================================# 方法一:参数方程theta = np.arange(0, 2*np.pi, 0.01)x = a + r * np.cos(theta)y = b + r * np.sin(theta)fig = plt.figure() axes = fig.add_subplot(111) axes.plot(x, y)axes.axis('equal')plt.title('www.vevb.com')# ==========================================# 方法二:标准方程x = np.arange(a-r, a+r, 0.01)y = b + np.sqrt(r**2 - (x - a)**2)fig = plt.figure() axes = fig.add_subplot(111) axes.plot(x, y) # 上半部axes.plot(x, -y) # 下半部plt.axis('equal')plt.title('www.vevb.com')# ==========================================plt.show()

运行效果:

Python,圆形,绘制,画圆.

Python,圆形,绘制,画圆

 

希望本文所述对大家Python程序设计有所帮助。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表