SparseMatrixKroneckerProduct(MatrixComplex, MatrixComplex) 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.ComplexAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic override void KroneckerProduct(
Matrix<Complex> other,
Matrix<Complex> result
)
Parameters
- other MatrixComplex
- The other matrix.
- result MatrixComplex
- The Kronecker product of the two matrices.
Exceptions| Exception | Condition |
|---|
| ArgumentException | If the result matrix's dimensions are not (this.Rows * lower.rows) x (this.Columns * lower.Columns). |
See Also