Class DoubleArrays

java.lang.Object
tech.tablesaw.util.DoubleArrays

public class DoubleArrays extends Object
Utility functions for creating 2D double arrays from columns and other arrays
  • Method Details

    • toN

      public static double[] toN(int n)
      Returns a double[] initialized with the values from 0 to n-1, inclusive;
    • to2dArray

      public static double[][] to2dArray(NumericColumn<?>... columns)
    • to2dArray

      public static double[][] to2dArray(List<NumericColumn<?>> columnList)
    • to2dArray

      public static double[][] to2dArray(TableSliceGroup views, int columnNumber)