probability in Markov chain

2 次查看(过去 30 天)
Given, a state sequence (100 elements) of two different states '1' or '2'. find the probability of occurance of '1' and '2'(P1 and P2).
Also find the probability of occurance of P11,P12,P21,P22 where P11(probability of the state remaining in the state 1 during a transition and similarly others) represents the elements of state transition probability matrix.
Any sort of help would be appreciated.
Thanks & Regards

采纳的回答

Fangjun Jiang
Fangjun Jiang 2011-6-27
I can write the code in a couple of minutes. But let's see if you can help me to help you.
1. Generate a vector of 100x1 or 1x100. The data is a random distribution of '1' and '2'. You can use rand(). Or randint() is even better.
2. set your P=zeros(2,2)
3. Go through a for-loop. If the vector value goes from 1 to 1, P(1,1) is increased by 1. If the values goes from 1 to 2, P(1,2) is increased by 1. And so on.
4. At the end, divide P by 100 (your data length), you get your probability matrix.
EDIT This is incorrect. Should divide the first row by the total number of 1s and divide the second row by the total number of 2s.
Start writing your MATLAB code, if you have particular questions regarding using MATLAB functions, or M-script syntax. People here would love to help you.
  2 个评论
SATYANARAYANA R
SATYANARAYANA R 2020-7-30
please provide MATLAB CODES
Walter Roberson
Walter Roberson 2020-7-30
SATYANARAYANA R: it is a homework question, and we avoid giving complete solutions to homework questions. Fangjun has given an outline of what you need to do. You should make a start at the code, and you can come back and ask specific questions if you have trouble getting your code to work.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Markov Chain Models 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by