When using eigenpy, flattening of arrays fails: ```python import numpy v = numpy.array([1,2,3,4]).reshape(-1,1) # column vector print v.flatten().shape # should result in (4,), but yields (4,1) when using eigenpy ```