  | DoubleTriDiagMatrixLeadingSubmatrix 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
Syntaxpublic DoubleTriDiagMatrix LeadingSubmatrix(
	int k
)
Public Function LeadingSubmatrix ( 
	k As Integer
) As DoubleTriDiagMatrix
public:
DoubleTriDiagMatrix^ LeadingSubmatrix(
	int k
)
member LeadingSubmatrix : 
        k : int -> DoubleTriDiagMatrix Parameters
- k  Int32
 - The order of the leading submatrix. The submatrix has
            have k rows and k columns.
 
Return Value
DoubleTriDiagMatrixThe 
k by 
k upper left corner of the matrix. The
            matrix and the submatrix share the same data.
See Also