Click or drag to resize

SparseMatrixKroneckerProduct(MatrixComplex32, MatrixComplex32) Method

Computes the Kronecker product of this matrix with the given matrix. The new matrix is M-by-N with M = this.Rows * lower.Rows and N = this.Columns * lower.Columns.

Namespace: Altaxo.Calc.LinearAlgebra.Complex32
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public override void KroneckerProduct(
	Matrix<Complex32> other,
	Matrix<Complex32> result
)

Parameters

other  MatrixComplex32
The other matrix.
result  MatrixComplex32
The Kronecker product of the two matrices.
Exceptions
ExceptionCondition
ArgumentExceptionIf the result matrix's dimensions are not (this.Rows * lower.rows) x (this.Columns * lower.Columns).
See Also