Gets the row at the specified row index as a vector of the specified type.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> GetRowAs<T>(
R key
)
Public Function GetRowAs(Of T) (
key As R
) As Vector(Of T)
public:
generic<typename T>
Vector<T>^ GetRowAs(
R key
)
member GetRowAs :
key : 'R -> Vector<'T>
Parameters
- key
- Type: R
The key of the row to be returned.
Type Parameters
- T
- The desired element type of the row.
Return Value
Type:
VectorTThe row with key
key of the data frame
as a vector with element type
T.
Reference