IStorage2D<T, TStorage2D>.From Method

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

From(Int32, Int32) Returns the array starting at the specified position.
From(Int32, Int32, Int32) Returns the array starting at the specified position with the specified leading dimension.

From(Int32, Int32)

Returns the array starting at the specified position.
C#
TStorage2D From(
	int row,
	int column
)

Parameters

row  Int32
The zero-based row of the top left element.
column  Int32
The zero-based column of the top left element.

Return Value

TStorage2D

From(Int32, Int32, Int32)

Returns the array starting at the specified position with the specified leading dimension.
C#
TStorage2D From(
	int row,
	int column,
	int leadingDimension
)

Parameters

row  Int32
The zero-based row of the top left element.
column  Int32
The zero-based column of the top left element.
leadingDimension  Int32
The leading dimension of the 2D array.

Return Value

TStorage2D

See Also