transition probability matrix for markov
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
saja mk
am 8 Okt. 2020
Kommentiert: Ameer Hamza
am 8 Okt. 2020
how to solve if the summation of each row in transition probability matrix in markov chain not equal to one?
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 8 Okt. 2020
If you just want to make each row sum to one, then you can try this
M % matrix
M_new = M./sum(M,2)
I am not sure if this is the theoretically correct way to solve this problem.
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Markov Chain Models finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!