Vector.Join<T>(Vector<T>, Vector<T>) Method

Joins two vectors.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<T> Join<T>(
	this Vector<T> first,
	Vector<T> second
)

Parameters

first  Vector<T>
A Vector<T> that contains the lower index components.
second  Vector<T>
A Vector<T> that contains the higher index components.

Type Parameters

T

Return Value

Vector<T>
A Vector<T> that contains the components of first followed by the components of second.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

If a vector is null, it is treated as a vector of length zero.

See Also