在 R 中,我正在模拟维纳过程之后的变量。
mcsim <- function(drift, dt, spot, spotdate, nap, maturity, sim)
{
for(n in 1:sim)
{
for(i in 1:maturity)
{
dz = rnorm(1, mean=0, sd=1);
ivol = findnap(spot[i,n], spotdate[i], nap)
ret = (drift-(ivol^2)/2)*dt+ivol*sqrt(dt)*dz;
spot[i+1,n] = spot[i,n]*exp(ret);
#display counter
cat(n/sim, "% of 100% \r");
#flush.console()
}
}
return(spot);
}
ivol
是一个实数,例如 0.23
ret
也是一个实数
错误似乎在行中:spot[i+1,n] = spot[i,n]*exp(ret);
>Error in FR : le nombre d'objets à remplacer n'est pas multiple de la taille du remplacement
>Error in EN : the number of objects that must be replaced is not a multiple of the size of the replacement. (sorry for the rough translation)