CreateScoreMatrix       package:GraphAlignment       R Documentation

_C_r_e_a_t_e _s_c_o_r_e _m_a_t_r_i_x

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

     Create a score matrix from two lookup vectors.

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

     CreateScoreMatrix(lookupX, lookupY)

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

 lookupX: x lookup vector

 lookupY: y lookup vector

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

     This function creates a very simple score matrix containing the
     product of lookup table values for each row and column as its
     elements. This can be used for testing purposes.

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

     The return value is a matrix of link scores.

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

     Joern P. Meier, Michal Kolar, Ville Mustonen, Michael Laessig, and
     Johannes Berg

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

       lookupLink <- 0.1*(-10:10)
       CreateScoreMatrix(lookupLink, lookupLink)

