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 unless obj is a square matrix or if row or col is out of range. |