赞
踩
import math
import numpy as np
#定义模型并设定参数值
S0 = 100.
K = 105.
T = 1.0
r = 0.05
sigma = 0.2
#随机数生成器种子值固定
I = 100000
np.random.seed(1000)
#提取标准正态分布随机数
z = np.random.standard_normal(I)
#模拟期末价值
ST = S0*np.exp((r-sigma**2/2
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。