Lines Matching refs:transP
254 hmm->transP = icvCreateMatrix_32f( hmm->num_states, hmm->num_states );
265 icvDeleteMatrix( hmm->transP );
835 /* as a counter we will use transP matrix */
839 /* clear transP */
840 icvSetZero_32f( hmm->transP, hmm->num_states, hmm->num_states );
863 hmm->transP[ state * transP_size + nextstate] += 1;
875 total += hmm->transP[i * hmm->num_states + j];
883 hmm->transP[i * hmm->num_states + j] =
884 hmm->transP[i * hmm->num_states + j] ?
885 (float)log( hmm->transP[i * hmm->num_states + j] * inv_total ) : -BIG_FLT;
972 hmm->transP, (float*)(hmm->obsProb), 0,