コード例 #1
0
ファイル: RDouble.java プロジェクト: nunb/fastr
    @Override
    public double getDouble(int i) {
      assert Utils.check(i < size, "bounds check");
      assert Utils.check(i >= 0, "bounds check");

      if (i < excludeIndex) {
        return orig.getDouble(i);
      } else {
        return orig.getDouble(i + 1);
      }
    }
コード例 #2
0
ファイル: RDouble.java プロジェクト: nunb/fastr
 public static RDouble exclude(int excludeIndex, RDouble orig) {
   Names names = orig.names();
   if (names == null) {
     return new RDoubleExclusion(excludeIndex, orig);
   }
   int size = orig.size();
   int nsize = size - 1;
   double[] content = new double[nsize];
   for (int i = 0; i < excludeIndex; i++) {
     content[i] = orig.getDouble(i);
   }
   for (int i = excludeIndex; i < nsize; i++) {
     content[i] = orig.getDouble(i + 1);
   }
   return RDoubleFactory.getFor(content, null, names.exclude(excludeIndex));
 }
コード例 #3
0
ファイル: RDouble.java プロジェクト: nunb/fastr
 public static RDouble stripKeepNames(RDouble v) {
   Names names = v.names();
   if (v.size() == 1 && names == null) {
     return new ScalarDoubleImpl(v.getDouble(0));
   }
   return new DoubleImpl(v, null, names, null);
 }
コード例 #4
0
ファイル: RDouble.java プロジェクト: nunb/fastr
    public static double[] copyAsDoubleArray(RDouble d) {
      int size = d.size();
      if (size == 1) {
        return new double[] {d.getDouble(0)};
      } else {
        double[] res = new double[size];

        if (d instanceof DoubleImpl) {
          System.arraycopy(((DoubleImpl) d).getContent(), 0, res, 0, size);
        } else {
          for (int i = 0; i < size; i++) {
            res[i] = d.getDouble(i);
          }
        }
        return res;
      }
    }
コード例 #5
0
ファイル: RDouble.java プロジェクト: nunb/fastr
 public static boolean hasNAorNaN(RDouble d) {
   int size = d.size();
   for (int i = 0; i < size; i++) {
     if (isNAorNaN(d.getDouble(i))) {
       return true;
     }
   }
   return false;
 }
コード例 #6
0
ファイル: RDouble.java プロジェクト: nunb/fastr
 public static RRaw doubleToRaw(
     RDouble value, ConversionStatus warn) { // eager to keep error semantics eager
   int size = value.size();
   byte[] content = new byte[size];
   for (int i = 0; i < size; i++) {
     double dval = value.getDouble(i);
     content[i] = Convert.double2raw(dval, warn);
   }
   return RRaw.RRawFactory.getFor(content, value.dimensions(), value.names());
 }
コード例 #7
0
ファイル: RDouble.java プロジェクト: nunb/fastr
 public static RInt double2int(
     RDouble value, ConversionStatus warn) { // eager to keep error semantics eager
   int size = value.size();
   int[] content = new int[size];
   for (int i = 0; i < size; i++) {
     double d = value.getDouble(i);
     content[i] = Convert.double2int(d, warn);
   }
   return RInt.RIntFactory.getFor(content, value.dimensions(), value.names());
 }
コード例 #8
0
ファイル: RDouble.java プロジェクト: nunb/fastr
 @Override
 public double getDouble(int i) {
   int j = index.getInt(i);
   assert Utils.check(j > 0);
   if (j > vsize) {
     return RDouble.NA;
   } else {
     return value.getDouble(j - 1);
   }
 }
コード例 #9
0
ファイル: RDouble.java プロジェクト: nunb/fastr
 public static RDouble strip(RDouble v) {
   if (v.size() == 1) {
     return new ScalarDoubleImpl(v.getDouble(0));
   }
   return new DoubleImpl(v, true);
 }
コード例 #10
0
ファイル: RDouble.java プロジェクト: nunb/fastr
 public static RDouble copy(RDouble d) {
   if (d.size() == 1 && d.dimensions() == null && d.names() == null && d.attributes() == null) {
     return new ScalarDoubleImpl(d.getDouble(0));
   }
   return new DoubleImpl(d, false);
 }