Memory 2D<T>.Transpose To Method
Transposes the elements of the 2D array and returns the result in the specified array.
Definition
Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public void TransposeTo(
int rowCount,
int columnCount,
Memory2D<T> result
)
Parameters
- rowCount Int32
- The number of rows to transpose.
- columnCount Int32
- The number of columns to transpose.
- result Memory2D<T>
- The array where the transposed elements should be stored.