代码拉取完成,页面将自动刷新
"""
Created on Sun Oct 27 17:50:45 2013
"""
# DLA Cluster
"""
This generates a DLA particle cluster.
"""
import numpy as np
import matplotlib.pyplot as plt
import ClusterGrowth as cluster
# call function for DLA growth model
#-------------------------------------------------------------------
# initial parameters
N = 500
seed = [0,0]
R = 3
# call function
x,y,Px,Py = cluster.DLA(N, seed, R)
# get max point for setting axis limits
mx = [max(np.abs(x)), max(np.abs(y))]
lim = max(mx)+5
# plot DLA growth cluster
plt.plot(x,y,'b.', label='DLA Model')
plt.plot(Px,Py,'m.')
plt.xlabel('x')
plt.ylabel('y')
plt.xlim(-lim,lim)
plt.ylim(-lim,lim)
plt.annotate('N = '+str(N),fontsize=14,xy=(0.14,0.84),xycoords='figure fraction')
plt.legend()
#-------------------------------------------------------------------
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。