Array
            
            
            
            
            Returns an array slice with a specified stride that starts at the specified position.
            
Definition
Namespace: Extreme.Collections
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
    C#
    
 
 
An array slice with a specified stride that starts at the specified position.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public ArraySlice<T> VectorFrom(
	int row,
	int column,
	int stride
)Parameters
- row Int32
- The zero-based row of the first element in the array slice.
- column Int32
- The zero-based column of the first element in the array slice.
- stride Int32
- The stride between elements in the original array.
Return Value
ArraySlice<T>An array slice with a specified stride that starts at the specified position.