Displaying 1 result from an estimated 1 matches for "rlist1".
Did you mean:
list1
2005 Jul 20
2
unable to call R t-test from Java
...s.numeric what do I get? NaN
*/
static public void runMeanByNumericList_nan(REvaluator e, ROmegahatInterpreter interp)
{
Object[] funArgs = new Object[1];
// given argument is not numeric or logical
org.omegahat.Environment.DataStructures.numeric rList1 = new org.omegahat.Environment.DataStructures.numeric(3);
double[] dList = new double[3];
dList[0] = (double) 1.1;
dList[1] = (double) 2.2;
dList[2] = (double) 3.3;
rList1.setData(dList, true);
System.err.println(rList1.toString());...