Concatenates two vectors.
Namespace:
Extreme.DataAnalysis.Linq
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> Concat<T>(
this Vector<T> first,
Vector<T> second
)
<ExtensionAttribute>
Public Shared Function Concat(Of T) (
first As Vector(Of T),
second As Vector(Of T)
) As Vector(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static Vector<T>^ Concat(
Vector<T>^ first,
Vector<T>^ second
)
[<ExtensionAttribute>]
static member Concat :
first : Vector<'T> *
second : Vector<'T> -> Vector<'T>
Parameters
- first
- Type: Extreme.MathematicsVectorT
The first vector. - second
- Type: Extreme.MathematicsVectorT
The second vector.
Type Parameters
- T
- The element type of the vectors.
Return Value
Type:
VectorTA 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
VectorT. 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).
Reference