Creates A List Of Integer Ranges
This function generates a list of arrays containing integers greater than or equal to 1. This list of arrays is used in other functions as a list of indices of the elements of the matrices.
IniListDims(dims, lenlist)
dims | 
 The dimensions of a matrix for which we need the possible 
indices for each dimension. For exemple, if the dimensions sent are 
c(3,2,5), the following list of arrays will be generated:  | 
lenlist | 
 'lenlist' is the length of the list because the list will 
be complemented above length(dims) by arrays of length 1.  | 
A list with lenlist elements, each with arrays with integers from 1 to the numbers in dims array and with only 1 for the dimensions above length(dims).
History:
0.1  -  2011-04  (V. Guemas, virginie.guemas@ic3.cat)  -  Original code
1.0  -  2013-09  (N. Manubens, nicolau.manubens@ic3.cat)  -  Formatting to R CRAN
1.1  -  2015-03  (N. Manubens, nicolau.manubens@ic3.cat)  -  Improved
indices <- IniListDims(c(2, 2, 4, 3), 6) print(indices)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.