Control Libraries 7.4.0
Loading...
Searching...
No Matches
dynamical_systems_bindings.hpp
1#pragma once
2
3#include <pybind11/pybind11.h>
4#include <pybind11/stl.h>
5
6#include <dynamical_systems/IDynamicalSystem.hpp>
7
8#include "parameter_container.hpp"
9
10namespace py = pybind11;
11using namespace pybind11::literals;
12using namespace dynamical_systems;
13
14void bind_exceptions(py::module_& m);
15void bind_ds_type(py::module_& m);
16void bind_cartesian_ds(py::module_& m);
17void bind_joint_ds(py::module_& m);
Systems of equations relating state variables to their derivatives.
Definition Circular.hpp:7