kron: Kronecker product

Description Usage Arguments Details Author(s) Examples

View source: R/tfunctions.r View source: R/tfunctions.r

Description

Calculate a kronecker product

Calculate a kronecker product

Usage

1
2
3

Arguments

...

Either a sequence of matrices, or a single list object of matrices

...

Either a sequence of matrices, or a single list object of matrices

Details

This function calculates the Kronecker product of a list of matrices.

This function calculates the Kronecker product of a list of matrices.

Author(s)

Peter Hoff

Peter Hoff

Examples

1
2
3
4
5
6
7
8
A<-rsan(c(2,3)) ; B<-rsan(c(3,4)) ; C<-rsan(c(4,5))
kron(A,B,C)
M<-list(A,B,C)
kron(M)
A<-rsan(c(2,3)) ; B<-rsan(c(3,4)) ; C<-rsan(c(4,5))
kron(A,B,C)
M<-list(A,B,C)
kron(M)

MikeKozelMSU/mcmcFunc documentation built on May 22, 2019, 5:31 p.m.