Constructs a new slice.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Slice(
int length,
int start,
int stride = 1
)
Public Sub New (
length As Integer,
start As Integer,
Optional stride As Integer = 1
)
public:
Slice(
int length,
int start,
int stride = 1
)
new :
length : int *
start : int *
?stride : int
(* Defaults:
let _stride = defaultArg stride 1
*)
-> Slice
Parameters
- length
- Type: SystemInt32
The length of the slice. - start
- Type: SystemInt32
The index of the first element in the slice. - stride (Optional)
- Type: SystemInt32
The number of elements between successive
indexes in the slice.
Reference