當前位置: 首頁>>代碼示例>>Python>>正文


Python PyDSTool.prepJacobian方法代碼示例

本文整理匯總了Python中PyDSTool.prepJacobian方法的典型用法代碼示例。如果您正苦於以下問題:Python PyDSTool.prepJacobian方法的具體用法?Python PyDSTool.prepJacobian怎麽用?Python PyDSTool.prepJacobian使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PyDSTool的用法示例。


在下文中一共展示了PyDSTool.prepJacobian方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: plot

# 需要導入模塊: import PyDSTool [as 別名]
# 或者: from PyDSTool import prepJacobian [as 別名]
# plot vector field
pp.plot_PP_vf(dmModel, 's1', 's2', scale_exp=-1.5)

# find dixed points of the model
fp_coord = pp.find_fixedpoints(dmModel, n=4, eps=1e-8)

# plot the null-clines
nulls_x, nulls_y = pp.find_nullclines(dmModel, 's1', 's2', n=3, \
										eps=1e-8, max_step=0.01, fps=fp_coord)

plot(nulls_x[:,0], nulls_x[:,1], 'b')
plot(nulls_y[:,0], nulls_y[:,1], 'g')

# compute the jacobian matrix
jac, new_fnspecs = dst.prepJacobian(dmModel.funcspec._initargs['varspecs'],
			['s1','s2'],dmModel.funcspec._initargs['fnspecs'])
scope = dst.copy(dmModel.pars)
scope.update(new_fnspecs)
jac_fn = dst.expr2fun(jac, ensure_args=['t'],**scope)

# add fixed points to the phase portrait
for i in range(0,len(fp_coord)):
	fp = pp.fixedpoint_2D(dmModel, dst.Point(fp_coord[i]),
						jac = jac_fn, eps=1e-8)
	pp.plot_PP_fps(fp)

# compute and plot projectories
traj = dmModel.compute('trajectory1')
pts = traj.sample()
plot(pts['s1'], pts['s2'], 'r-o')
開發者ID:gilsho,項目名稱:bioe332assign2,代碼行數:32,代碼來源:pplane.py


注:本文中的PyDSTool.prepJacobian方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。