SMAPHMM                 package:SMAP                 R Documentation

_C_o_n_s_t_r_u_c_t_o_r _f_o_r "_S_M_A_P_H_M_M" _o_b_j_e_c_t_s

_D_e_s_c_r_i_p_t_i_o_n:

     A constructor for 'SMAPHMM-class' objects.

_U_s_a_g_e:

     SMAPHMM(noStates, Phi, A=NULL,
             Pi=rep(1/noStates,noStates),
             initTrans=0.2/(noStates - 1))

_A_r_g_u_m_e_n_t_s:

noStates: The number of hidden states in the HMM (numeric).

     Phi: A Gaussian distribution parameter matrix (numeric).

       A: A 'noStates * noStates' matrix of transition probabilities
          betweeen the hidden states (numeric).

      Pi: A vector of initial probabilities of starting in a certain
          state (numeric).

initTrans: Specifies the transition probability between non-equal
          states (numeric).

_D_e_t_a_i_l_s:

     'Phi' is a 'noStates * 2' matrix that specifies the paramaters of
     Gaussian distributions associated with each hidden state.  The
     first column specifies standard deviations, the second specifies
     means.

     If 'A == NULL', 'initTrans' specifies the transition probability
     between states 'i' and 'j' in '1:noStates', such that 'i != j'.
     Only used if 'A == NULL'. 'initTrans * noStates' must be smaller
     than (or equal to) 1.

_V_a_l_u_e:

     An object of class 'SMAPHMM-class'.

_A_u_t_h_o_r(_s):

     Robin Andersson, robin.andersson@lcb.uu.se

_R_e_f_e_r_e_n_c_e_s:

     Andersson, R., Bruder, C. E. G., Piotrowski, A., Menzel, U., Nord,
     H., Sandgren, J., Hvidsten, T. R., Diaz de Stahl, T., Dumanski, J.
     P., Komorowski, J., A Segmental Maximum A Posteriori Approach to
     Array-CGH Copy Number Profiling, submitted

_S_e_e _A_l_s_o:

     'smap', 'SMAPHMM-class', 'SMAPObservations-class'

