MatrixOperationSide 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#
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

Left0 The operand is on the left side.
Right1 The operand is on the right side.
Both2 The operand is on the left and the right side.

See Also