rowMinors | R Documentation |
Returns the vector of minors of row i of the square matrix A
rowMinors(A, i)
A |
a square matrix |
i |
row index |
a vector of the minors of A[i,]
Michael Friendly
Other determinants:
Det()
,
adjoint()
,
cofactor()
,
minor()
,
rowCofactors()
M <- matrix(c(4, -12, -4,
2, 1, 3,
-1, -3, 2), 3, 3, byrow=TRUE)
minor(M, 1, 1)
minor(M, 1, 2)
minor(M, 1, 3)
rowMinors(M, 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.