Click or drag to resize

MatrixTStack(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 Matrix<T> Stack(
	Matrix<T> lower
)

Parameters

lower  MatrixT
The matrix to stack this matrix upon.

Return Value

MatrixT
The combined matrix.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf lower is .
ArgumentExceptionIf upper.Columns != lower.Columns.
See Also