// @Test public void demoRnd0() { TsData s = rnd; double[] x = new double[] {0}; TestFunctionInstance rslt = new TestFunctionInstance(s, new DataBlock(x)); rslt.compute(); System.out.println("Rnd0"); printRslt(rslt); }
// @Test public void demo0() { TsData s = Data.X.log(); double[] x = new double[] {0, 0}; TestFunctionInstance rslt = new TestFunctionInstance(s, new DataBlock(x)); rslt.compute(); System.out.println("X0"); printRslt(rslt); }