transition probability matrix for markov
13 ビュー (過去 30 日間)
古いコメントを表示
how to solve if the summation of each row in transition probability matrix in markov chain not equal to one?
0 件のコメント
採用された回答
Ameer Hamza
2020 年 10 月 8 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Markov Chain Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!