Azzera filtri
Azzera filtri

Markov chain simulation code

1 visualizzazione (ultimi 30 giorni)
saja mk
saja mk il 1 Ott 2020
In Markov chain code
transition_probabilities = [0.1 0.9;0.8 0.2];
starting_value = 1;
chain_length = 5;
chain = zeros(1,chain_length);
chain(1)=starting_value;
for i=2:chain_length
this_step_distribution = transition_probabilities(chain(i-1),:);
cumulative_distribution = cumsum(this_step_distribution);
r = rand()
chain(i) = find(cumulative_distribution>r,1);
end
whats the aim of using cumsum function?
Why compare with random value in each iteration?

Risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by