print.mak: Print 'mak' object

Description Usage Arguments See Also Examples

Description

Prints objects of class mak, including visualising the reactions.

Usage

1
2
## S3 method for class 'mak'
print(x, ...)

Arguments

x

Object of class mak.

...

Additional arguments passed to print.

See Also

mak

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Michaelis-Menten system
A <- matrix(
c(1, 1, 0, 0,
  0, 0, 1, 0,
  0, 0, 1, 0), ncol = 4, byrow = TRUE)
B <- matrix(
c(0, 0, 1, 0,
  1, 1, 0, 0,
  1, 0, 0, 1), ncol = 4, byrow = TRUE)
m <- mak(A, B)
m

episode documentation built on May 1, 2019, 11:17 p.m.