Click or drag to resize

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.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Matrix<T> DiagonalStack(
	Matrix<T> lower
)

Parameters

lower  MatrixT
The lower, right matrix.

Return Value

MatrixT
the combined matrix
Exceptions
ExceptionCondition
ArgumentNullExceptionIf lower is .
See Also