cofactor {RConics} | R Documentation |
-cofactor and
-minor of a matrix
Description
Compute the -cofactor, respectively the
-minor of
the matrix
. The
-cofactor is obtained by multiplying
the
-minor by
. The
-minor of
,
is the determinant of the
matrix that results
by deleting the
-th row and the
-th column of
.
Usage
cofactor(A, i, j)
minor(A, i, j)
Arguments
A |
a square matrix. |
i |
the |
j |
the |
Value
The -minor/cofactor of the matrix
(single value).
See Also
Examples
A <- matrix(c(1,4,5,3,7,2,2,8,3),nrow=3,ncol=3)
A
minor(A,2,3)
cofactor(A,2,3)
[Package RConics version 1.1.1 Index]