Learn R Programming

Rato (version 0.1.0)

Michaelis.Menten: Michaelis-Menten equations

Description

The standard Michaelis-Menten equations

Usage

Michaelis.Menten(t, x, params)

Value

A list with `dx`

Arguments

t

Current time

x

Current value of all nodes

params

List of parameters. Should include the adjacency matrix of the network `M`, and parameters `f, h,` and `B`

Examples

Run this code
# \donttest{
   node_file <- system.file("extdata", "IL17.nodes.csv", package = "Rato")
   edge_file <- system.file("extdata", "IL17.edges.csv", package = "Rato")
   g <- Rato::graph.from.csv(node_file, edge_file, sep=",", header=TRUE)
 
   Rato::node.removal.thread(  Rato::Michaelis.Menten
                             , g$M
                             , g$initial_values
                             , initial_params = list('f' = 1, 'h'=2, 'B'=0.1))

# }

Run the code above in your browser using DataLab