Click or drag to resize

MatrixTDiagonalStack(MatrixT, MatrixT) Method

Diagonally stacks his matrix on top of the given matrix and places the combined matrix into the result matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void DiagonalStack(
	Matrix<T> lower,
	Matrix<T> result
)

Parameters

lower  MatrixT
The lower, right matrix.
result  MatrixT
The combined matrix
Exceptions
ExceptionCondition
ArgumentNullExceptionIf lower is .
ArgumentNullExceptionIf the result matrix is .
ArgumentExceptionIf the result matrix's dimensions are not (this.Rows + lower.rows) x (this.Columns + lower.Columns).
See Also