Learn R Programming

PerRegMod (version 4.4.3)

A_x_B: A Kronecker product B

Description

A_x_B() function gives A Kronecker product B

Usage

A_x_B(A,B)

Value

A_x_B(A,B)

returns the matrix A Kronecker product B, \(A\otimes B \)

Arguments

A

A matrix.

B

A matrix.

Examples

Run this code
A=matrix(rep(1,6),3,2)
B=matrix(seq(1,8),2,4 )
A_x_B(A,B)

Run the code above in your browser using DataLab