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