Matrix.Join Vertical<T> Method
            
            
            Concatenates matrices vertically.
            
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
A matrix created by concatenating the matrices in matrices vertically.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
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.  |