Transposes the elements of the 2D array and returns the result in the specified array.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public void TransposeTo(
int rowCount,
int columnCount,
Array2D<T> m
)
Public Sub TransposeTo (
rowCount As Integer,
columnCount As Integer,
m As Array2D(Of T)
)
public:
void TransposeTo(
int rowCount,
int columnCount,
Array2D<T> m
)
member TransposeTo :
rowCount : int *
columnCount : int *
m : Array2D<'T> -> unit
Parameters
- rowCount
- Type: SystemInt32
The number of rows to transpose. - columnCount
- Type: SystemInt32
The number of columns to transpose. - m
- Type: Extreme.CollectionsArray2DT
The array where the transposed elements should be stored.
Reference