Returns an array slice with a specified stride that starts at the specified position.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public ArraySlice<T> VectorFrom(
int row,
int column,
int stride
)
Public Function VectorFrom (
row As Integer,
column As Integer,
stride As Integer
) As ArraySlice(Of T)
public:
ArraySlice<T> VectorFrom(
int row,
int column,
int stride
)
member VectorFrom :
row : int *
column : int *
stride : int -> ArraySlice<'T>
Parameters
- row
- Type: SystemInt32
The zero-based row of the first element in the array slice. - column
- Type: SystemInt32
The zero-based column of the first element in the array slice. - stride
- Type: SystemInt32
The stride between elements in the original array.
Return Value
Type:
ArraySliceTAn array slice with a specified stride that starts at the specified position.
Reference