Transpose Operation Enumeration
Represents the possible values of an operation to be
performed on a matrix before it is multiplied.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public enum TransposeOperation
Remarks
This enumeration corresponds to the trans parameters in the BLAS and LAPACK routines, and the CBLAS.TRANSPOSE enum in the CBLAS interface definition.
Members
None | 0 | No operation is performed. The matrix is used 'as is.' |
Transpose | 1 | The transpose of the matrix used. |
Conjugate | 2 | The conjugate of the matrix is used. For real matrices, this is the same as None. |
ConjugateTranspose | 3 | The conjugate transpose of the matrix is used. For real matrices, this is the same as Transpose. |