On Feb 14, 6:54 pm, Keith Clawson <rattletyb...@gmail.com> wrote: > Many of our core algorithms are implemented as matlab Mex files, > which are really C libraries using C/C++ data types that need to be > converted to numpy arrays.
Hi, I've never seen that before, either. You could ask about this at the numpy mailing list. But despite that, I think you should skip the mex related stuff and directly wrap all C/C++ stuff in cython. Basically, Cython builds a Python object which behaves like a usual python module and exposes the wrapped methods. There are plenty examples inside Sage where you can see this approach. H -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org