Gets the row at the specified row index.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Vector<T> GetRowAtAs<T>(
int index
)
Public Overridable Function GetRowAtAs(Of T) (
index As Integer
) As Vector(Of T)
public:
generic<typename T>
virtual Vector<T>^ GetRowAtAs(
int index
)
abstract GetRowAtAs :
index : int -> Vector<'T>
override GetRowAtAs :
index : int -> Vector<'T>
Parameters
- index
- Type: SystemInt32
The zero-based index of the row.
Type Parameters
- T
- The desired element type of the returned row.
Return Value
Type:
VectorTA vector with element type
T
that contains the elements of the row at position
index.
Reference