CreateScoreMatrix {GraphAlignment}R Documentation

Create score matrix

Description

Create a score matrix from two lookup vectors. The entries of the score matrix are set to the product of the two respective values of the lookup vectors.

Usage

CreateScoreMatrix(lookupX, lookupY)

Arguments

lookupX x lookup vector
lookupY y lookup vector

Value

The return value is a matrix of link scores.

Examples

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

[Package GraphAlignment version 1.0-0 Index]