Click or drag to resize
sqx

MatrixAdjugate Method

[Matrix] Adjugate()

Namespace:  sqx
Assembly:  SQX (in SQX.dll) Version: 1.0.2.6 (1.0.2.6)
Syntax
C#
public Matrix Adjugate()

Return Value

Type: Matrix
[Matrix]
Remarks
Matrix Adjugate.
Examples
SQL
declare @A sqx.Matrix = '-3,2,-5;-1,0,-2;3,-4,1'
print @A.Adjugate().ToString()
/*
-8,18,-4;
-5,12,-1;
4,-6,2*/
See Also