-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrw_visual.py
More file actions
31 lines (24 loc) · 914 Bytes
/
rw_visual.py
File metadata and controls
31 lines (24 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import matplotlib.pyplot as plt
from random_walk import RandomWalk
while True:
"""只要程序处于活动状态,就不断的模拟随机游走"""
# 创建一个RandomWalk实例
rw = RandomWalk(50000)
rw.fill_walk()
# 将所有的点都绘制出来
plt.style.use('classic')
fig, ax = plt.subplots(figsize=(12, 12))
point_numbers = range(rw.num_points)
ax.scatter(rw.x_values, rw.y_values, s=1, c=point_numbers, cmap=plt.cm.Blues,
edgecolors='none')
ax.set_aspect('equal')
#突出起点和终点
ax.scatter(0, 0, s=100, c='green', edgecolors='none')
ax.scatter(rw.x_values[-1], rw.y_values[-1], s=100, c='red', edgecolors='none')
#隐藏坐标轴
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
plt.show()
keep_running = input('Make another walk? (y/n): ')
if keep_running == 'n':
break