rxStateOde {rxode2}R Documentation

Get the ODE states only

Description

Get the ODE states only

Usage

rxStateOde(obj)

Arguments

obj

rxode2 object

Value

ODE states only

Author(s)

Matthew L. Fidler

Examples


mod <- rxode2({
  Cp <- linCmt(Cl, V, Q2, V2, Q3, V3)
  ke0 <- log(2)/(50)
  d/dt(Ce) <- (Cp-Ce)*ke0
})

rxStateOde(mod)

rxState(mod)

mod <- rxode2({
  Cp <- linCmt(Cl, V, Q2, V2, Q3, V3, ka)
  ke0 <- log(2)/(50)
  d/dt(Ce) <- (Cp-Ce)*ke0
}, linCmtSens="linCmtB")

rxStateOde(mod)

rxState(mod)


[Package rxode2 version 4.0.1 Index]