3#include <pybind11/pybind11.h>
4#include <pybind11/stl.h>
6#include <dynamical_systems/IDynamicalSystem.hpp>
8#include "parameter_container.h"
10namespace py = pybind11;
11using namespace pybind11::literals;
14void bind_ds_type(py::module_& m);
15void bind_cartesian_ds(py::module_& m);
16void bind_joint_ds(py::module_& m);
Systems of equations relating state variables to their derivatives.