维纳过程的数值模拟
維納過程的數值模擬
import numpy as np from matplotlib import pyplot as pltT=10 mu, sigma = 0.002, 0.1 # 均值和標準差 N=int(T/sigma)s = np.random.normal(mu, np.sqrt(sigma), N) z=np.cumsum(s)*np.sqrt(sigma) t=list(range(N))plt.plot(t,z)posted on 2019-01-21 14:43 luoganttcc 閱讀(...) 評論(...) 編輯 收藏
總結
- 上一篇: 混沌与分叉python 实现
- 下一篇: 泊松方程与拉普拉斯方程数值解