Matrix.Join Vertical<T> Method
Concatenates matrices vertically.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A matrix created by concatenating the matrices in matrices vertically.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static Matrix<T> JoinVertical<T>(
params Matrix<T>[] matrices
)
Parameters
- matrices Matrix<T>[]
- A parameter array of matrices to concatenate.
Type Parameters
- T
- The element type of the matrices.
Return Value
Matrix<T>A matrix created by concatenating the matrices in matrices vertically.
Exceptions
Argument | matrices is null. |
Argument | One or more of the elements of matrices is null. -or- Not all matrices have the same number of columns. |