程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

利用python制作隨機漫步坐標圖

編輯:Python
import matplotlib.pyplot as plt
from random import choice
class RandWalk:
# 一個生成隨機漫步的類
def __init__(self, num_points=5000):
# 初始化隨機漫步的屬性
self.num_points = num_points
# 所有隨機漫步都始於(0,0)
self.x_values = [0]
self.y_values = [0]
def fill_walk(self):
# 計算隨機漫步包含的所有點
# 不斷漫步,直到列表到達指定的長度
while len(self.x_values) < self.num_points:
# 決定前進方向以及延這個方向前進的距離
x_direction = choice([1, -1])
x_distance = choice([0, 1, 2, 3, 4])
x_step = x_direction * x_distance
y_direction = choice([1, -1])
y_distance = choice([0, 1, 2, 3, 4])
y_step = y_direction * y_distance
# 拒絕原地踏步
if x_step == 0 and y_step == 0:
continue
# 計算下一個點的x值和y值
x = self.x_values[-1] + x_step
y = self.y_values[-1] + y_step
self.x_values.append(x)
self.y_values.append(y)
# 模擬多次隨機漫步
while True:
rw = RandWalk(50000)
rw.fill_walk()
plt.style.use('classic')
fig, ax = plt.subplots(figsize=(15, 9)) # 單位為英寸
point_number = range(rw.num_points)
ax.scatter(rw.x_values, rw.y_values, c=point_number, cmap=plt.cm.Blues, edgecolors='none', s=1)
# 突出起點和終點
ax.scatter(0, 0, c='green', edgecolors='none', s=100)
ax.scatter(rw.x_values[-1], rw.y_values[-1], c='red', edgecolors='none', s=100)
# 隱藏坐標軸
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

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved