MatrixTDiagonalStack(MatrixT) Method |
Diagonally stacks his matrix on top of the given matrix. The new matrix is a M-by-N matrix,
where M = this.Rows + lower.Rows and N = this.Columns + lower.Columns.
The values of off the off diagonal matrices/blocks are set to zero.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public Matrix<T> DiagonalStack(
Matrix<T> lower
)
Parameters
- lower MatrixT
- The lower, right matrix.
Return Value
MatrixTthe combined matrix
Exceptions See Also