Learn R Programming

matlib (version 0.6.0)

cofactor: Cofactor of A[i,j]

Description

Returns the cofactor of element (i,j) of the square matrix A, i.e., the signed minor of the submatrix that results when row i and column j are deleted.

Usage

cofactor(A, i, j)

Arguments

A
a square matrix
i
row index
j
column index

Value

  • the cofactor of A[i,j]

See Also

row_cofactors for all cofactors of a given row Other determinants: minor, row_cofactors, row_minors

Examples

Run this code
M <- matrix(c(4, -12, -4,
              2,   1,  3,
             -1,  -3,  2), 3, 3, byrow=TRUE)
cofactor(M, 1, 1)
cofactor(M, 1, 2)
cofactor(M, 1, 3)

Run the code above in your browser using DataLab