powered by
Given two lists of matrices with conformable dimensions, listprod returns a list whose elements are the matrix products of the elements of these two lists.
listprod
listprod(A, B)
A list of matrices.
A second list of matrices.
A list C such that C[[i]] = A[[i]] %*% B[[i]].
C
C[[i]] = A[[i]] %*% B[[i]]