On Sun, Jul 6, 2008 at 9:55 PM, wilson <[EMAIL PROTECTED]> wrote: > hi all, > is it possible to use numpy functions (like eigh()..etc)from java > code? isthere a java wrapper for numpy?
As Robert said, not really possible. A large part of numpy (around 50%) is pure C, of which a large part is tied to the python C api. If all you want is some linear algebra things like eigh, I would be really surprised if java did not have wrappers around LAPACK, though, so that's where you should look. cheers, David _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
