R/commutation.matrix.R

Defines functions commutation.matrix

Documented in commutation.matrix

commutation.matrix <- function( r, c=r )
{
###
### this function returns a square matrix with p = r * c rows and columns
###
### Parameters
### m = integer rows
### n = integer columns
###
    return( K.matrix( r, c ) )
}

Try the matrixcalc package in your browser

Any scripts or data that you put into this service are public.

matrixcalc documentation built on Sept. 15, 2022, 1:05 a.m.