Represents the possible values that specify the side
of an operand to a matrix operation.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum MatrixOperationSide
Public Enumeration MatrixOperationSide
public enum class MatrixOperationSide
| Member name | Value | Description |
---|
| 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.
|
This enumeration corresponds to the Side parameter
in the BLAS and LAPACK routines, and the CBLAS.SIDE enum in
the CBLAS interface definition.
Reference