Function to do compute the minor of a matrix defined by row r and column c.
minor(x, r, c)
x
: The input matrixr
: The row numberc
: The column numberThe appropriate `minor' matrix defined from the input matrix.
This function is needed by the cofactor function.
## Not run: x=matrix(1:20,ncol=4) minor(x,1,2) ## End(Not run)
Prof. H. D. Vinod, Economics Dept., Fordham University, NY
Useful links