CreateScoreMatrix {GraphAlignment}R Documentation

Create score matrix

Description

Create a score matrix from two lookup vectors.

Usage

CreateScoreMatrix(lookupX, lookupY)

Arguments

lookupX x lookup vector
lookupY y lookup vector

Details

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.

Value

The return value is a matrix of link scores.

Author(s)

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

Examples

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

[Package GraphAlignment version 1.4.0 Index]