MatrixTKroneckerProduct(MatrixT) 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.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public Matrix<T> KroneckerProduct(
Matrix<T> other
)
Parameters
- other MatrixT
- The other matrix.
Return Value
MatrixTThe Kronecker product of the two matrices.
See Also