  | NMathFunctionsTranspose(DoubleLowerTriMatrix) Method | 
            Transposes a lower triangular matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleUpperTriMatrix Transpose(
	DoubleLowerTriMatrix A
)
Public Shared Function Transpose ( 
	A As DoubleLowerTriMatrix
) As DoubleUpperTriMatrix
public:
static DoubleUpperTriMatrix^ Transpose(
	DoubleLowerTriMatrix^ A
)
static member Transpose : 
        A : DoubleLowerTriMatrix -> DoubleUpperTriMatrix Parameters
- A  DoubleLowerTriMatrix
 - A lower triangular matrix.
 
Return Value
DoubleUpperTriMatrix
            The transpose of the given matrix. The transpose of
            a lower triangular matrix is an upper triangular matrix.
            
Remarks
            No data is copied. The returned matrix references the same
            data as the given matrix.
            
See Also