powered by
Returns the vector of minors of row i of the square matrix A
row_minors(A, i)
a square matrix
row index
a vector of the minors of A[i,]
Other determinants: cofactor, minor, row_cofactors
cofactor
minor
row_cofactors
# NOT RUN { 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) row_minors(M, 1) # }
Run the code above in your browser using DataLab