Matrix.Adjung Method

Overload List

#SignatureDescription
1TMtx AdjungAdjungate matrix.
2TMtx Adjung(TMtx X)Calculate the adjungate to X matrix and store the results in calling matrix.

Overload 1: TMtx Adjung

Adjungate matrix.

Result: stored in self (calling object), returns self for chaining

Remarks:

Calculate the adjungate matrix in-place. Adjungation is equal to transpose and conjugate.

Overload 2: TMtx Adjung(TMtx X)

Calculate the adjungate to X matrix and store the results in calling matrix.

#NameTypeDescription
1XTMtxsource TMtx

Result: stored in self (calling object), returns self for chaining

Remarks:

The Dew.Math.Matrix.Rows, Dew.Math.Matrix.Cols and Dew.Math.Matrix.Complex properties of the calling matrix are set implicitly to match those of X matrix.