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(
Range range
)
<ObsoleteAttribute("Use the GetSlice method instead.")>
Public Function GetSubvector (
range As Range
) As Vector(Of T)
public:
[ObsoleteAttribute(L"Use the GetSlice method instead.")]
Vector<T>^ GetSubvector(
Range range
)
[<ObsoleteAttribute("Use the GetSlice method instead.")>]
member GetSubvector :
range : Range -> Vector<'T>
Parameters
- range
- Type: Extreme.MathematicsRange
A Range value specifying the
range of elements in this instance that will make up the new
vector.
Return Value
Type:
VectorTA reference to the new
VectorT.
Reference