From: nasim on
hello;
states of my problem partition to three part that first part has 10 state, second one 10 state and third one 17 state,and i want always one of the state of third part occur after one the state of second, and one of the second part occur after one state of first part, so my transition matrix is like
[zeros(10,10) matrix1(10,10) zeros(10,17);
zeros(10,10) zeros(10,10) matrix2(10,17);
zeros(10,10) zeros(10,10) zeros(10,17)]
that matrix1 is the probability of being one state of second part after one states of part one and matrix2 is the probability of being one state of third part after one state of second part,
now my problem is about initial probability, i want sequence that start with state of part one and then state of part two and then state of part three, how set my initial probability of states?
now i have three matrix for three part of states that sum of every matrix (lonely) is one(not sum of all matrix).
best regards;
From: nasim on
can anyone help me?