createSquareMatrix           package:SLGI           R Documentation

_C_r_e_a_t_e _a _s_q_u_a_r_e _m_a_t_r_i_x

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

     Create a square matrix based on row and column names. The new
     matrix is created so that the row and column names are a perfect
     match and the added values are zero.

     In the case of genetic interactions, for example it could be
     useful that the matrix of all the interactions tested and not
     tested.

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

     createSquareMatrix(data)

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

    data: Matrix

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

     matrix.

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

     N. LeMeur

_E_x_a_m_p_l_e_s:

       data(Atong)
       dim(Atong)

       Tong<- createSquareMatrix(Atong)
       dim(Tong)
      

