Learn R Programming

SimEvolEnzCons (version 2.0.0)

compute.B.from.beta: Global co-regulation coefficient computation

Description

Computes the global co-regulation coefficients B from a matrix of co-regulation coefficients beta

Usage

compute.B.from.beta(beta_fun)

Arguments

beta_fun

Matrix of co-regulation coefficients

Value

Numeric vector of the n global co-regulation coefficients.

If beta_fun is NULL, compute.B.from.beta returns NULL.

Details

beta_fun have same number of rows and columns.

See Also

Use function is.beta.accurate to verify beta_fun conformity.

Examples

Run this code
# NOT RUN {
beta <- matrix(c(1,10,5,0.1,1,0.5,0.2,2,1),nrow=3)
correl <- "RegPos"

is.beta.accurate(beta,3,correl)

B <- compute.B.from.beta(beta)


# }

Run the code above in your browser using DataLab