Matrix Operation Side Enumeration
Represents the possible values that specify the side
of an operand to a matrix operation.
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 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. |