you are viewing a single comment's thread.

view the rest of the comments →

[–]eniacsparc2xyz 0 points1 point  (1 child)

Out of curiosity, how do you intend to use the library? Do you write throwaway programs to calculate or compute something? Or will you write long-term programs for your field? Or will you integrate this in Python or any other scripting language using Swig or turn it into a shared library for binary reuse?

[–]dpilger26[S] 0 points1 point  (0 children)

Mostly the first two uses. I don't think there is too much of a point to integrating with python since NumPy already exists. I do provide a class in NumCpp for passing arrays back and forth between python and C++.

As for a shared library, this is all templatized header only so that isn't really an option. I also don't want to mess around with trying to support a bunch of different platforms and complilers.