Concatenates matrices vertically.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> JoinVertical<T>(
params Matrix<T>[] matrices
)
Public Shared Function JoinVertical(Of T) (
ParamArray matrices As Matrix(Of T)()
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ JoinVertical(
... array<Matrix<T>^>^ matrices
)
static member JoinVertical :
matrices : Matrix<'T>[] -> Matrix<'T>
Parameters
- matrices
- Type: Extreme.MathematicsMatrixT
A parameter array of matrices to concatenate.
Type Parameters
- T
- The element type of the matrices.
Return Value
Type:
MatrixTA matrix created by concatenating the matrices in
matrices vertically.
Reference