Constructs a new Range.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ startIndex As Integer, _ endIndex As Integer, _ stride As Integer _ ) |
| C# |
|---|
public Range ( int startIndex, int endIndex, int stride ) |
| C++ |
|---|
public: Range ( int startIndex, int endIndex, int stride ) |
Parameters
- startIndex (System.Int32)
- The first index in the range.
- endIndex (System.Int32)
- The last index in the range.
- stride (System.Int32)
- The increment for the index.