Confusione riguardante la programmazione in generale

di il
15 risposte

15 Risposte - Pagina 2

  • Re: Confusione riguardante la programmazione in generale

    Scusate se scrivo in questa discussione fuori argomento ma sono nella m...non mi blocca i numeri generati cas. dalla simulazione e pertanto non riesco a confrontare i grafici..devo consegnare la tesi..potete autarmi???non sono un esperto di matlab


    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);
Devi accedere o registrarti per scrivere nel forum
15 risposte