Click or drag to resize

MatrixHorizontalStack Method (Matrix, Matrix, Matrix)

Stacks the given matrices horizontally. The new matrix is M-by-N matrix, where
1M = left.Rows
and
1N = left.Columns + right.Columns
.

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

Parameters

left
Type: FinMath.LinearAlgebraMatrix
The left matrix to stack.
right
Type: FinMath.LinearAlgebraMatrix
The right matrix to stack.
result
Type: FinMath.LinearAlgebraMatrix
The result of stacking.
See Also