Index.Join<T> Method

Returns the index that results from applying the specified join operation to two indexes.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static Index<T> Join<T>(
	Index<T> left,
	Index<T> right,
	JoinType joinType,
	out int[]?? leftIndexes,
	out int[]?? rightIndexes
)

Parameters

left  Index<T>
The first index to join.
right  Index<T>
The second index.
joinType  JoinType
The type of join.
leftIndexes  Int32[]
An array of indexes of the elements of the current index in the new index.
rightIndexes  Int32[]
An array of indexes of the elements of right in the new index.

Type Parameters

T

Return Value

Index<T>
The joined index.

See Also