a2lm converts a (3D) array to a list of matrices. This is a simple call
to asplit with a default to convert the third dimension to a list dimension.
Usage
a2lm(a, along = 3L, check = TRUE)
Value
list of matrices - all with the same dimensions.
Arguments
a
3D array.
along
integer vector of length 1 specifying the dimension to slice the array
along. This dimension is converted to the list dimension. 1 = rows; 2 = columns;
3 = layers.
check
logical vector of length 1 specifying whether to check the structure
of the input arguments. For example, check whether a is a 3D array.
This argument is available to allow flexibility in whether the user values
informative error messages (TRUE) vs. computational efficiency (FALSE).