Represents the possible values that specify on which side
of the operator a Matrix argument is to be
multiplied.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Enumeration MatrixOperationSide |
| C# |
|---|
public enum MatrixOperationSide |
| C++ |
|---|
public enum class MatrixOperationSide |
Members
| Member | Description |
|---|---|
| Left |
The Matrix is to be multiplied on the
left side.
|
| Right |
The Matrix is to be multiplied on the
right side.
|
Remarks
This enumeration corresponds to the Side parameter
in the BLAS and LAPACK routines, and the CBLAS_SIDE enum in
the CBLAS interface definition.