Gets a copy of the specified row.

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public override RowVector Row(
	int r
)
Public Overrides Function Row ( _
	r As Integer _
) As RowVector
public:
virtual RowVector^ Row(
	int r
) override
abstract Row : 
        r : int -> RowVector 
override Row : 
        r : int -> RowVector 

Parameters

r
Int32
The (zero-based) row index.

Return Value

An independent copy of the specified row.

See Also