Click or drag to resize

MatrixKroneckerProduct Method (Matrix, 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 void KroneckerProduct(
	Matrix left,
	Matrix right,
	Matrix result
)

Parameters

left
Type: FinMath.LinearAlgebraMatrix
Left matrix to multiply.
right
Type: FinMath.LinearAlgebraMatrix
Right matrix to multiply.
result
Type: FinMath.LinearAlgebraMatrix
Matrix to store the Kronecker product of matrices left and right.
See Also