|  | DoubleComplexMatrixCol Method | 
            Returns a column of this matrix as a vector. The returned vector
            and the matrix share the data.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleComplexVector Col(
	int j
)
Public Function Col ( 
	j As Integer
) As DoubleComplexVector
public:
DoubleComplexVector^ Col(
	int j
)
member Col : 
        j : int -> DoubleComplexVector Parameters
- j  Int32
- The column number.
Return Value
DoubleComplexVectorThe 
jth column as a vector. 
j must be between
             
0 and 
the number of columns - 1, inclusive.
 See Also
See Also