Re: [vfs] implementation requires List privilege on the remote directory structure

2013-08-22 Thread Gary Gregory
On Wed, Aug 21, 2013 at 6:38 AM, Geoff Watters geoff.watt...@oracle.comwrote: I am writing an application that uses VFS to implement the FTP operations. I have found that the VFS implementation (commons-vfs2-2.0.jar)) relies on the List permission on the remote directory structure. For

Commons Daemon - prunsrv.exe elevation and PR_* environment variables

2013-08-22 Thread David Koch
Hello, I start the prunsrv.exe from a java installation process and use the environment variables feature (PR_*) in order to avoid the danger to exceed the command-line length limit. Since adding the elevation feature (which is really good) the environment variables are wiped off by windows

[math] SplineInterpolator not working properly

2013-08-22 Thread Nico Caprioli
Since I need a spline interpolation I used your library do calculate it but it seems it is not working good. If I understood javadoc i need two double[] arrays: - double[] x: the absissa of every point - double[] y: the ordinate/value of points in the same order of x Now after interpolation I

Re: [imaging] Create a multi page TIFF

2013-08-22 Thread Damjan Jovanovic
Hi Rafael Imaging isn't able to do write multi-page TIFFs right now. I was working on a patch to add that feature, but I need another week or so to finish it. Regards Damjan On Thu, Aug 22, 2013 at 8:29 PM, Rafael Ferreira de Lima Veloso (Mirante) rafael.v...@sicoob.com.br wrote: Hi,

Re: [math] SplineInterpolator not working properly

2013-08-22 Thread Gilles
On Thu, 22 Aug 2013 17:02:34 +0200, Nico Caprioli wrote: Since I need a spline interpolation I used your library do calculate it but it seems it is not working good. If I understood javadoc i need two double[] arrays: - double[] x: the absissa of every point - double[] y: the ordinate/value of

Re: [math] SplineInterpolator not working properly

2013-08-22 Thread Nico Caprioli
I've attached a simple java file that interpolates and prints functions (results on second files) I expected at least to have a continue function Moreover I catched x and y values from wikipedia that gives this functions for natural cubic spline with theese points

Re: [math] SplineInterpolator not working properly

2013-08-22 Thread Nico Caprioli
Forget everything i told, i found my problem: System.out.println(Arrays.toString(interpolation.getPolynomials()) gives me not-centered function, if I translate them to right of the right step (in my case 0 for the first, 1 for the second, 2 for the third and so on) i get right spline functions!