minor {generalCorr}R Documentation

Function to do compute the minor of a matrix defined by row r and column c.

Description

Function to do compute the minor of a matrix defined by row r and column c.

Usage

minor(x, r, c)

Arguments

x

The input matrix

r

The row number

c

The column number

Value

The appropriate ‘minor’ matrix defined from the input matrix.

Note

This function is needed by the cofactor function.

Author(s)

Prof. H. D. Vinod, Economics Dept., Fordham University, NY

Examples


## Not run: 
 x=matrix(1:20,ncol=4)
minor(x,1,2)
## End(Not run)


[Package generalCorr version 1.2.6 Index]