You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**EigenPy** is an open source framework which allows to bind the famous [Eigen](http://eigen.tuxfamily.org) in Python as NumPy object (as matrix or array).
13
+
**EigenPy** allows the sharing of memory between Numpy and Eigen avoiding memory allocation.
14
+
**EigenPy** fully support Eigen::Ref avoiding memory allocation.
12
15
**EigenPy** also exposes the Geometry module of Eigen for easy code prototyping.
13
16
**EigenPy** also supports the basic matrix decomposion routines of Eigen such as the Cholesky decomposition, SVD decomposition, QR decomposition, and etc.
14
17
15
18
## Setup
16
19
17
20
The installation of **EigenPy** on your computer is made easy for Linux/BSD and Mac OS X environments.
18
21
22
+
### The Conda approach
23
+
24
+
You simply need this simple line:
25
+
```
26
+
conda install eigenpy -c conda-forge
27
+
```
19
28
### Ubuntu
20
29
21
30
You can easily install **EigenPy** from binairies.
22
31
23
32
#### Add robotpkg apt repository
24
-
25
-
1. Check your distribution codename in a terminal with the following command:
0 commit comments