Control Libraries 6.3.4
Loading...
Searching...
No Matches
dynamical_systems_bindings.h
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.h"
9
10namespace py = pybind11;
11using namespace pybind11::literals;
12using namespace dynamical_systems;
13
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.
Definition: Circular.hpp:7