Matrix.Adjung Method

Overload List

#SignatureDescription
1function Adjung: TMtx;Adjungate matrix.
2function Adjung(const X: TMtx): TMtx;Calculate the adjungate to X matrix and store the results in calling matrix.

Overload 1: function Adjung: TMtx;

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: function Adjung(const X: TMtx): TMtx;

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

#NameTypeDescription
1XTMtx

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

Remarks:

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