Note: This API is now obsolete.
Returns a vector whose elements are a subset of the elements of
this instance
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute("Use the GetSlice method instead.")]
public Vector<T> GetSubvector(
int startIndex
)
<ObsoleteAttribute("Use the GetSlice method instead.")>
Public Function GetSubvector (
startIndex As Integer
) As Vector(Of T)
public:
[ObsoleteAttribute(L"Use the GetSlice method instead.")]
Vector<T>^ GetSubvector(
int startIndex
)
[<ObsoleteAttribute("Use the GetSlice method instead.")>]
member GetSubvector :
startIndex : int -> Vector<'T>
Parameters
- startIndex
- Type: SystemInt32
The index of the first element of this
VectorT to be contained in the new
vector.
Return Value
Type:
VectorTA reference to the new
VectorT.
Reference