MatrixToBin {GraphAlignment}R Documentation

Convert matrix to bin representation

Description

Convert a matrix of real numbers to a vector of integer bin numbers according to the specified lookup vector.

Usage

MatrixToBin(M, lookup, clamp=TRUE)

Arguments

M input matrix
lookup lookup vector
clamp clamp values to lookup range

Details

The return value is a matrix containing the bin numbers for the elements of the input matrix.

Examples

  m <- matrix(rnorm(25), 5, 5)
  lookup <- 0.2*(-5:5)
  MatrixToBin(m, lookup)

[Package GraphAlignment version 1.0-0 Index]