Click or drag to resize

VectorKroneckerProduct Method

Computes the Kronecker product of two vectors. Considers input vectors as 1-column matrices and returns vector size N-by-M which contains kronecker product.

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

Parameters

left
Type: FinMath.LinearAlgebraVector
Left vector to multiply.
right
Type: FinMath.LinearAlgebraVector
Right vector to multiply.
result
Type: FinMath.LinearAlgebraVector
Vector to store the Kronecker product of vectors left and right. Should be first.Count-by-second.Count size.
See Also