Simulate trajectories of CEV process

조회 수: 2 (최근 30일)
Emilie M
Emilie M 2017년 4월 30일
답변: Chaitral Date 2017년 5월 8일
I am trying to create a MATLAB code that simulates trajectories of a constant elasticity of variance process (CEV).
My code is below.
M = 5000; % number of trajectories of CEV process
N = 250; % number of steps in one trajectory
X0 = 100; % initial point
T = 1; % final time in years in trajectory
a = 0.7; % constant
dt = T/N; % time step
X(1:M,1) = X0;
for j = 1:M
for i = 2:N+1
X(j,i) = 0.02*X(j,i-1)*dt + 0.15*X(j,i-1)^a*sqrt(dt)*randn;
end
end
t = 0:dt:T;
plot(t,X(:,:));
However, when I run the code the following warning message appears,
Warning: Imaginary parts of complex X and/or Y arguments ignored In ConstantElasticyVariance (line 19)
and weird straight lines are shown in the plot.
What am I doing wrong?

답변 (1개)

Chaitral Date
Chaitral Date 2017년 5월 8일
Use the below function to see the graph more clearly.
set(gca,'xscale','log');
I hope this helps.

카테고리

Help CenterFile Exchange에서 Simulink에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by