Re: How to send double array[][] from Python to Java with JCC?

2013-01-23 Thread Andi Vajda
On Mon, 21 Jan 2013, Alexey Ryabukhin wrote: Here is a Java part: public double[][] getArrayPixels() { double array[][] = new double[nx][ny]; int k = 0; for(int j = 0; j < ny; j++) { for(int i = 0; i < nx; i++) array[i][j] = pixels[k++];

Re: How to send double array[][] from Python to Java with JCC?

2013-01-23 Thread Alexey Ryabukhin
Just installed new version, but it still not works. Could you show me your java and python code example? Thank you. 2013/1/23 Andi Vajda : > > On Mon, 21 Jan 2013, Alexey Ryabukhin wrote: > >> Here is a Java part: >> >> public double[][] getArrayPixels() >>{ >>double array[][] = new do

Re: How to send double array[][] from Python to Java with JCC?

2013-01-23 Thread Andi Vajda
On Thu, 24 Jan 2013, Alexey Ryabukhin wrote: Just installed new version, but it still not works. Could you show me your java and python code example? Thank you. Did you rebuild and resinstall JCC, then rebuild and resinstall your python extensions ? -- foo.java - public class