Click or drag to resize

MatrixTStack(MatrixT, MatrixT) Method

Stacks this matrix on top of the given matrix and places the result 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 Stack(
	Matrix<T> lower,
	Matrix<T> result
)

Parameters

lower  MatrixT
The matrix to stack this matrix upon.
result  MatrixT
The combined matrix.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf lower is .
ArgumentExceptionIf upper.Columns != lower.Columns.
See Also