예제 #1
0
  // @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);
  }
예제 #2
0
  // @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);
  }