arrayIndex: Converts vector indices to array indices
Description
Converts vector indices to array indices assuming last array dimension to "move fastest", e.g.
matrices are stored column by column.
Usage
"arrayIndex"(i, dim, ...)
Arguments
i
A vector
of vector indices to be converted to array
indices. dim
A non-empty numeric
vector
specifying the dimension of
the array. Value
Returns an integer
matrix
of length(i)
rows and
length(dim)
columns.
References
[1] H. Bengtsson, Bayesian Networks - a self-contained
introduction with implementation remarks, Master's Thesis in
Computer Science, Mathematical Statistics, Lund Institute of
Technology, 1999.
See Also
From R v2.11.0 there is arrayInd
(), which does
the same thing as this method.
which
() with argument arr.ind=TRUE
.