EigenPy 1.5.0
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.