脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python+matplotlib实现填充螺旋实例

Python+matplotlib实现填充螺旋实例

2021-01-05 00:11mengwei Python

这篇文章主要介绍了Python+matplotlib实现填充螺旋实例,具有一定借鉴价值,需要的朋友可以参考下

填充螺旋演示结果:

Python+matplotlib实现填充螺旋实例

实例代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import matplotlib.pyplot as plt
import numpy as np
 
theta = np.arange(0, 8*np.pi, 0.1)
a = 1
b = .2
 
for dt in np.arange(0, 2*np.pi, np.pi/2.0):
 
  x = a*np.cos(theta + dt)*np.exp(b*theta)
  y = a*np.sin(theta + dt)*np.exp(b*theta)
 
  dt = dt + np.pi/4.0
 
  x2 = a*np.cos(theta + dt)*np.exp(b*theta)
  y2 = a*np.sin(theta + dt)*np.exp(b*theta)
 
  xf = np.concatenate((x, x2[::-1]))
  yf = np.concatenate((y, y2[::-1]))
 
  p1 = plt.fill(xf, yf)
 
plt.show()

总结

以上就是本文关于Python+matplotlib实现填充螺旋实例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

原文链接:https://matplotlib.org/index.html#

延伸 · 阅读

精彩推荐