minor: Function to do compute the minor of a matrix defined by row r...

View source: R/minor.R

minorR 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)


generalCorr documentation built on Oct. 10, 2023, 1:06 a.m.