Click or drag to resize

MatrixKroneckerProduct Method (Matrix, Matrix)

Computes the Kronecker product of two matrices.

Namespace:  FinMath.LinearAlgebra
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public static Matrix KroneckerProduct(
	Matrix left,
	Matrix right
)

Parameters

left
Type: FinMath.LinearAlgebraMatrix
Left matrix to multiply.
right
Type: FinMath.LinearAlgebraMatrix
Right matrix to multiply.

Return Value

Type: Matrix
Kronecker product of matrices left and right.
See Also