Click or drag to resize

ProductTransposeOption Enumeration

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public enum ProductTransposeOption
Members
Member nameValueDescription
TransposeNone0 Do not transpose either matrix before multiplying.
TransposeBoth1 Transpose both operands before multiplying.
TransposeFirst2 Transpose only the first operand before multiplying.
TransposeSecond3 Transpose only the second operand before multiplying.
ConjTransposeBoth4 Takes the conjucate transpose both operands before multiplying.
ConjTransposeFirst5 Takes the conjugate transpose only the first operand before multiplying.
ConjTransposeSecond6 Takes the conjugate transpose only the second operand before multiplying.
See Also