TransposeOperation Enumeration

Represents the possible values of an operation to be performed on a matrix before it is multiplied.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
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

None0 No operation is performed. The matrix is used 'as is.'
Transpose1 The transpose of the matrix used.
Conjugate2 The conjugate of the matrix is used. For real matrices, this is the same as None.
ConjugateTranspose3 The conjugate transpose of the matrix is used. For real matrices, this is the same as Transpose.

See Also