Displaying 1 result from an estimated 1 matches for "runttestonjavaarray_cores".
2005 Jul 20
2
unable to call R t-test from Java
...e 2.2 \r\n");
Object value = e.call("mean", funArgs);
if(value != null)
{
interp.show(value );
System.err.println("\r\n");
}
}
/**
* This is what I really want!
*/
static public void runTTestOnJavaArray_cores(REvaluator e, ROmegahatInterpreter interp)
{
Object[] funArgs = new Object[2];
double[] d0 = { 1.1, 2.2, 3.3};
double[] d1 = { 9.9, 8.8, 7.7};
funArgs[0] = d0;
funArgs[1] = d1;
System.err.println("\r\n Calling t.test and passing a...