Concatenates matrices horizontally.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> JoinHorizontal<T>(
params Matrix<T>[] matrices
)
Public Shared Function JoinHorizontal(Of T) (
ParamArray matrices As Matrix(Of T)()
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ JoinHorizontal(
... array<Matrix<T>^>^ matrices
)
static member JoinHorizontal :
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 horizontally.
Reference