Joins vectors together to form one large vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> Join<T>(
params Vector<T>[] vectors
)
Public Shared Function Join(Of T) (
ParamArray vectors As Vector(Of T)()
) As Vector(Of T)
public:
generic<typename T>
static Vector<T>^ Join(
... array<Vector<T>^>^ vectors
)
static member Join :
vectors : Vector<'T>[] -> Vector<'T>
Parameters
- vectors
- Type: Extreme.MathematicsVectorT
An array VectorT objects.
Type Parameters
- T
Return Value
Type:
VectorTA
VectorT that contains the components of each element in the
vectors
array.
Reference