Click or drag to resize

SquareMatrixRow Method

Returns a vector representing a given row of the matrix.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public override RowVector Row(
	int r
)

Parameters

r
Type: SystemInt32
The (zero-based) row index to return.

Return Value

Type: RowVector
A vector containing the entries of the specified row.
Remarks

The returned vector is independent of the matrix. If an entry of the returned vector is updated, the corresponding entry of the original matrix will not be updated as well, Similarly, if an entry in the matrix is updated after this method is called, the corresponding entry of the vector will not change.

See Also