|  | DoubleComplexBandMatrixLeadingSubmatrix Method | 
            Returns the k by k upper left corner of the matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleComplexBandMatrix LeadingSubmatrix(
	int k
)
Public Function LeadingSubmatrix ( 
	k As Integer
) As DoubleComplexBandMatrix
public:
DoubleComplexBandMatrix^ LeadingSubmatrix(
	int k
)
member LeadingSubmatrix : 
        k : int -> DoubleComplexBandMatrix Parameters
- k  Int32
- The submatrix will have k rows and k columns.
Return Value
DoubleComplexBandMatrixThe 
k by 
k upper left corner of the matrix. The
            matrix and the submatrix share the same data.
 Remarks
Remarks
            The matrix and the submatrix share the same data.
            
 See Also
See Also