Matrix.JoinHorizontal<T> Method

Concatenates matrices horizontally.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<T> JoinHorizontal<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 horizontally.

Exceptions

ArgumentNullException

matrices is null.

ArgumentException

One or more of the elements of matrices is null.

-or-

Not all matrices have the same number of rows.

See Also