GUDHI / gudhi-devel

The GUDHI library is a generic open source C++ library, with a Python interface, for Topological Data Analysis (TDA) and Higher Dimensional Geometry Understanding.
https://gudhi.inria.fr/
MIT License
259 stars 66 forks source link

[Python] Use numpy more in interfaces #188

Open mglisse opened 4 years ago

mglisse commented 4 years ago

reader_utils, subsampling, etc return (and take) lists of lists (that's what cython automatically does with vectors of vectors). It would be better if they returned a numpy array (preferably directly, not by building a list first and then converting it to numpy array).

VincentRouvreau commented 2 years ago

WIP and started by #498