getNormMatrix {NormExpression}R Documentation

getNormMatrix

Description

Please refer to the file /inst/doc/readme.pdf.

Usage

getNormMatrix(data, norm.factors)

Arguments

data

Please refer to the file /inst/doc/readme.pdf.

norm.factors

Please refer to the file /inst/doc/readme.pdf.

Examples

##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (data, norm.factors)
{
    data * matrix(rep(norm.factors, dim(data)[1]), nrow = dim(data)[1],
        ncol = length(norm.factors), byrow = T)
  }

[Package NormExpression version 0.1.1 Index]