CreateScoreMatrix {GraphAlignment} | R Documentation |
Create a score matrix from two lookup vectors.
CreateScoreMatrix(lookupX, lookupY)
lookupX |
x lookup vector |
lookupY |
y lookup vector |
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.
The return value is a matrix of link scores.
Joern P. Meier, Michal Kolar, Ville Mustonen, Michael Laessig, and Johannes Berg
lookupLink <- 0.1*(-10:10) CreateScoreMatrix(lookupLink, lookupLink)