LinqExtensions.Concat<T>(Vector<T>, Vector<T>) Method

Concatenates two vectors.

Definition

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

Parameters

first  Vector<T>
The first vector.
second  Vector<T>
The second vector.

Type Parameters

T
The element type of the vectors.

Return Value

Vector<T>
A vector that contains the elements of first followed by the elements 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).

Exceptions

ArgumentNullException

first is null.

-or-

second is null.

See Also