Gets a copy of one column of the the matrix.

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 ColumnVector Column(
	int c
)
Public Overrides Function Column ( _
	c As Integer _
) As ColumnVector
public:
virtual ColumnVector^ Column(
	int c
) override
abstract Column : 
        c : int -> ColumnVector 
override Column : 
        c : int -> ColumnVector 

Parameters

c
Int32
The (zero-based) column number to return.

Return Value

An independent copy of the specificed column.

Remarks

The returned vector is not linked to the matrix. If an entry in the matrix is updated after this method is called, the returned object will continue to represent a row of the original, not the updated, matrix. Similiarly, updates to the elements of the returned vector will not update the original matrix.

See Also