Matrix Operation Side Enumeration
Represents the possible values that specify the side
of an operand to a matrix operation.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum MatrixOperationSide
Remarks
This enumeration corresponds to the Side parameter in the BLAS and LAPACK routines, and the CBLAS.SIDE enum in the CBLAS interface definition.
Members
Left | 0 | The operand is on the left side. |
Right | 1 | The operand is on the right side. |
Both | 2 | The operand is on the left and the right side. |