IStorage2D<T, TStorage2D>.CloneData Method

Returns a new contiguous 2D array with the specified elements of the current array.

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
TStorage2D CloneData(
	int rowCount,
	int columnCount
)

Parameters

rowCount  Int32
The number of rows in the new array.
columnCount  Int32
The number of columns in the new array.

Return Value

TStorage2D
A new contiguous 2D array containing the elements of the current array in the rows and columns specified by rowCount and columnCount.

See Also