append.list.mx | R Documentation |
Append two lists of matrices by adding each element of listmx.src into the corresponding element of listmx.dest in the specified dimension.
append.list.mx(listmx.dest, listmx.src, into.dim = ZDIM)
listmx.dest |
list of vector/matrix/arrays |
listmx.src |
list of vector/matrix/arrays |
into.dim |
the dimension in which to add each element of listmx.src. If into.dim = ZDIM (i.e: 3) then listmx.src elements will be added as an additional z matrix into each matrix/array element of listmx.dest. Existing elements of listmx.dest will be in the first z dim(s). If into.dom = COL (i.e: 2) then listmx.src elements will be added as the 2nd col into each vector/matrix element of listmx.dest. Existing elements of listmx.dest will be in the first column(s). If into.dom = ROW (i.e: 1) then listmx.src elements will be added as the 2nd row into each vector/matrix element of listmx.dest. Existing elements of listmx.dest will be in the first row(s). |
list of vector/matrix/arrays after appended.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.