Click or drag to resize

MatrixVerticalStack Method (Matrix, Matrix, Matrix)

Stacks the given matrices vertically. The new matrix is M-by-N matrix, where
1M = top.Rows + bottom.Rows
and
1N = top.Columns
.

Namespace:  FinMath.LinearAlgebra
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public static void VerticalStack(
	Matrix top,
	Matrix bottom,
	Matrix result
)

Parameters

top
Type: FinMath.LinearAlgebraMatrix
The top matrix to stack.
bottom
Type: FinMath.LinearAlgebraMatrix
The bottom matrix to stack.
result
Type: FinMath.LinearAlgebraMatrix
The result of stacking.
See Also