Control Libraries
6.3.4
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
c
d
e
f
i
j
l
m
o
p
s
t
u
Functions
c
d
e
f
i
l
m
o
p
s
t
u
Typedefs
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
v
z
~
Functions
a
c
d
e
f
g
i
j
m
n
o
p
r
s
t
v
z
~
Variables
Related Functions
d
e
l
o
s
Files
File List
•
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Friends
Pages
Loading...
Searching...
No Matches
python
source
dynamical_systems
dynamical_systems_bindings.cpp
1
#include "dynamical_systems_bindings.h"
2
3
#define STRINGIFY(x) #x
4
#define MACRO_STRINGIFY(x) STRINGIFY(x)
5
6
PYBIND11_MODULE(
dynamical_systems
, m) {
7
m.doc() =
"Python bindings for control libraries dynamical_systems"
;
8
9
#ifdef MODULE_VERSION_INFO
10
m.attr(
"__version__"
) = MACRO_STRINGIFY(MODULE_VERSION_INFO);
11
#else
12
m.attr(
"__version__"
) =
"dev"
;
13
#endif
14
15
py::module_::import(
"state_representation"
);
16
17
bind_ds_type(m);
18
bind_cartesian_ds(m);
19
bind_joint_ds(m);
20
}
dynamical_systems
Systems of equations relating state variables to their derivatives.
Definition:
Circular.hpp:7
Generated by
1.9.5