Non mi blocca i numeri generati cas. dalla simulazione e pertanto non riesco a confrontare i grafici
..mi aiutate per favore???'devo consegnare la tesi di laurea
Parameters
S = 100;
T = 2;
r = 0;
d = 0;
titS = 'MC Variance Gamma';
legend_base = 'Base scenario';
C = 4.6;
G = 5.5; % exponent base scenario
M = 5.9;
%% Simulation parameters
NTime = 200; NSim =1; NBatches = 1;
K = ones(NTime+1,1);
K = T*cumsum(K)/(NTime+1);
K1 = K(2:end);
rstream = RandStream('mt19937ar','Seed',12345);
rstreamstate = rstream.State;
PathS = MC_VG_CGM(S,r,d,T,C,G,M,NTime,NSim,NBatches);
%% Changing C
C_low = 0.8;
C_high = 5.3;
rstream.State = rstreamstate;
PathS_low = MC_VG_CGM(S,r,d,T,C_low,G,M,NTime,NSim,NBatches);
rstream.State = rstreamstate;
PathS_high = MC_VG_CGM(S,r,d,T,C_high,G,M,NTime,NSim,NBatches);