Array2D<T>.TransposeTo Method

Transposes the elements of the 2D array and returns the result in the specified array.

Definition

Namespace: Extreme.Collections
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public void TransposeTo(
	int rowCount,
	int columnCount,
	Array2D<T> m
)

Parameters

rowCount  Int32
The number of rows to transpose.
columnCount  Int32
The number of columns to transpose.
m  Array2D<T>
The array where the transposed elements should be stored.

See Also