Skip to content

EigenPy 1.5.0

Choose a tag to compare

@jcarpent jcarpent released this 29 Oct 09:54
· 1929 commits to master since this release
v1.5.0
53c3c6a

This new release allows now to support the conversion from C++ to Python either as numpy.matrix or as numpy.array.

The use can switch between both features by calling in Python

eigenpy.switchToNumpyArray()

to convert Eigen::Matrix to numpy.array. Or

eigenpy.switchToNumpyMatrix()

to select conversion from Eigen::Matrix to numpy.matrix.

Thanks to @jviereck for raising the lost of performances induced by numpy.matrix.