Description Usage Arguments Details Value Author(s) Examples
View source: R/GraphAlignment.R
Convert a matrix of real numbers to a vector of integer bin numbers according to the specified lookup vector.
1 | MatrixToBin(M, lookup, clamp=TRUE)
|
M |
input matrix |
lookup |
lookup vector |
clamp |
clamp values to lookup range |
This function transforms a matrix of arbitrary values into a matrix of bin numbers corresponding to the data in the input matrix. Bin numbers are found using the specified lookup table (see GetBinNumber).
The return value is a matrix containing the bin numbers for the elements of the input matrix.
Joern P. Meier, Michal Kolar, Ville Mustonen, Michael Laessig, and Johannes Berg
1 2 3 | m <- matrix(rnorm(25), 5, 5)
lookup <- 0.2*(-5:5)
MatrixToBin(m, lookup)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.