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
Value
The return value is a matrix containing the bin numbers for the elements of the input matrix.
Details
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).