print.ratmak: Print 'ratmak' object

Description Usage Arguments See Also Examples

Description

Prints objects of class ratmak, and presents the powers.

Usage

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

Arguments

x

Object of class ratmak.

...

Additional arguments passed to print.

See Also

ratmak

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Rational mass action kinetics
A <- matrix(
c(1, 0, 0, 0,
  0, 1, 2, 0,
  1, 0, 0, 1), ncol = 4, byrow = TRUE)
x0 <- c(X = 1, Y = 4, Z = 0.1, W = 0.1)
time <- seq(0, 1, by = .1)

rmak <- ratmak(A, diag(4))
rmak

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