Learn R Programming

ODEnetwork (version 1.3.2)

createState: Creates starting State Vector

Description

Creates a vector with the starting state of the given ODEnetwork.

Usage

createState(odenet)

Arguments

odenet

[ODEnetwork] List of class ODEnetwork.

Value

a named vector with assigned starting state

Examples

Run this code
# NOT RUN {
if (interactive()) {
  masses <- c(1, 2)
  dampers <- diag(c(0.1, 0.5))
  dampers[1, 2] <- 0.05
  springs <- diag(c(4, 10))
  springs[1, 2] <- 6
  odenet <- ODEnetwork(masses, dampers, springs)
  createState(odenet)
}
# }

Run the code above in your browser using DataLab