![]() |
Stan
2.14.0
probability, sampling & optimization
|
Structure for integrate diff eq statement. More...
#include <integrate_ode.hpp>
Public Member Functions | |
integrate_ode () | |
Construct a default integrate ODE node. More... | |
integrate_ode (const std::string &integration_function_name, const std::string &system_function_name, const expression &y0, const expression &t0, const expression &ts, const expression &theta, const expression &x, const expression &x_int) | |
Construct an integrate ODE node with the specified components. More... | |
Public Attributes | |
std::string | integration_function_name_ |
The name of the integrator. More... | |
std::string | system_function_name_ |
Name of the ODE system. More... | |
expression | y0_ |
Initial state. More... | |
expression | t0_ |
Initial time. More... | |
expression | ts_ |
Solution times. More... | |
expression | theta_ |
Parameters. More... | |
expression | x_ |
Real-valued data. More... | |
expression | x_int_ |
Integer-valued data. More... | |
Structure for integrate diff eq statement.
Definition at line 15 of file integrate_ode.hpp.
stan::lang::integrate_ode::integrate_ode | ( | ) |
Construct a default integrate ODE node.
Definition at line 10 of file integrate_ode_def.hpp.
stan::lang::integrate_ode::integrate_ode | ( | const std::string & | integration_function_name, |
const std::string & | system_function_name, | ||
const expression & | y0, | ||
const expression & | t0, | ||
const expression & | ts, | ||
const expression & | theta, | ||
const expression & | x, | ||
const expression & | x_int | ||
) |
Construct an integrate ODE node with the specified components.
integration_function_name | name of integrator |
system_function_name | name of ODE system |
y0 | initial value |
t0 | initial time |
ts | solution times |
theta | parameters |
x | real-valued data |
x_int | integer-valued data |
Definition at line 12 of file integrate_ode_def.hpp.
std::string stan::lang::integrate_ode::integration_function_name_ |
The name of the integrator.
Definition at line 19 of file integrate_ode.hpp.
std::string stan::lang::integrate_ode::system_function_name_ |
Name of the ODE system.
Definition at line 24 of file integrate_ode.hpp.
expression stan::lang::integrate_ode::t0_ |
Initial time.
Definition at line 34 of file integrate_ode.hpp.
expression stan::lang::integrate_ode::theta_ |
Parameters.
Definition at line 44 of file integrate_ode.hpp.
expression stan::lang::integrate_ode::ts_ |
Solution times.
Definition at line 39 of file integrate_ode.hpp.
expression stan::lang::integrate_ode::x_ |
Real-valued data.
Definition at line 49 of file integrate_ode.hpp.
expression stan::lang::integrate_ode::x_int_ |
Integer-valued data.
Definition at line 54 of file integrate_ode.hpp.
expression stan::lang::integrate_ode::y0_ |
Initial state.
Definition at line 29 of file integrate_ode.hpp.