Enum for specifying transpose operations to be performed on the operands of a matrix-matrix multiply opertion.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public enum ProductTransposeOption
Visual Basic (Declaration)
Public Enumeration ProductTransposeOption
Visual C++
public enum class ProductTransposeOption

Members

Member nameDescription
TransposeNone
Do not transpose either matrix before multiplying.
TransposeBoth
Transpose both operands before multiplying.
TransposeFirst
Transpose only the first operand before multiplying.
TransposeSecond
Transpose only the second operand before multiplying.
ConjTransposeBoth
Takes the conjucate transpose both operands before multiplying.
ConjTransposeFirst
Takes the conjugate transpose only the first operand before multiplying.
ConjTransposeSecond
Takes the conjugate transpose only the second operand before multiplying.

See Also