Transposes a lower triangular matrix.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static FloatUpperTriMatrix Transpose( FloatLowerTriMatrix A ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function Transpose ( _ A As FloatLowerTriMatrix _ ) As FloatUpperTriMatrix |
| Visual C++ |
|---|
public: static FloatUpperTriMatrix^ Transpose( FloatLowerTriMatrix^ A ) |
Parameters
- A
- Type: CenterSpace.NMath.Matrix..::.FloatLowerTriMatrix
A lower triangular matrix.
Return Value
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.