|  | FloatHermitianMatrixLeadingSubmatrix Method | 
            Returns the k by k upper left corner of the matrix. The
            matrix and the submatrix share the same data.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic FloatHermitianMatrix LeadingSubmatrix(
	int k
)
Public Function LeadingSubmatrix ( 
	k As Integer
) As FloatHermitianMatrix
public:
FloatHermitianMatrix^ LeadingSubmatrix(
	int k
)
member LeadingSubmatrix : 
        k : int -> FloatHermitianMatrix Parameters
- k  Int32
- The submatrix will have k rows and k columns.
Return Value
FloatHermitianMatrixThe 
k by 
k upper left corner of the matrix. The
            matrix and the submatrix share the same data.
 Exceptions
Exceptions| Exception | Condition | 
|---|
| IndexOutOfRangeException | Thrown when trying to create
            a leading submatrix that's larger than this matrix. | 
 See Also
See Also