powered by
Compute cofactor of a matrix based on row r and column c.
cofactor(x, r, c)
cofactor of x, w.r.t. row r and column c.
matrix whose cofactor is desired to be computed
row number
column number
Prof. H. D. Vinod, Economics Dept., Fordham University, NY
minor(x,r,c)
## The function is currently defined as function (x, r, c) { out = minor(x, r, c) * ((-1)^(r + c)) return(out) }
Run the code above in your browser using DataLab