50% off: Unlimited data and AI learning.
State of Data and AI Literacy Report 2025

episode (version 1.0.0)

print.mak: Print 'mak' object

Description

Prints objects of class mak, including visualising the reactions.

Usage

# S3 method for mak
print(x, ...)

Arguments

x

Object of class mak.

...

Additional arguments passed to print.

See Also

mak

Examples

Run this code
# NOT RUN {
# 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
# }

Run the code above in your browser using DataLab