Computes the cofactor of a square matrix for the specified row and column.
Cofactor for row i and column j is defined as minor for that row and column which is multiplied by (-1)^(i + j).
public TNumber Alg(
int row,
int col
)
Public Function Alg (
row As Integer,
col As Integer
) As TNumber
public:
TNumber^ Alg(
int row,
int col
)
member Alg :
row : int *
col : int -> TNumber
GeneralException | Thrown if row or col are out of range or if this matrix is not square. |