Click or drag to resize

SquareMatrixColumn Method

Gets a copy of one column of the the matrix.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public override ColumnVector Column(
	int c
)

Parameters

c
Type: SystemInt32
The (zero-based) column number to return.

Return Value

Type: ColumnVector
An independent copy of the specified column.
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