Aligns two matrices along their row indexes using the default join type.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static IIndex AlignRows<T, U>(
ref Matrix<T> matrix1,
ref Matrix<U> matrix2
)
Public Shared Function AlignRows(Of T, U) (
ByRef matrix1 As Matrix(Of T),
ByRef matrix2 As Matrix(Of U)
) As IIndex
public:
generic<typename T, typename U>
static IIndex^ AlignRows(
Matrix<T>^% matrix1,
Matrix<U>^% matrix2
)
static member AlignRows :
matrix1 : Matrix<'T> byref *
matrix2 : Matrix<'U> byref -> IIndex
Parameters
- matrix1
- Type: Extreme.MathematicsMatrixT
The first matrix to align. On return
the matrix with rows aligned to the combined index. - matrix2
- Type: Extreme.MathematicsMatrixU
The second matrix to align. On return
the matrix with rows aligned to the combined index.
Type Parameters
- T
- The element type of the matrix1 matrix.
- U
- The element type of the matrix2 matrix.
Return Value
Type:
IIndexThe combined index.
The type specified by
AutoAlignJoinType
is used to join the indexes.
Reference