[Numpy-discussion] calling numpy from java

David Cournapeau cournape at gmail.com
Sun Jul 6 09:10:49 EDT 2008


On Sun, Jul 6, 2008 at 9:55 PM, wilson <wilson.t.thompson at gmail.com> 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



More information about the NumPy-Discussion mailing list