Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ScaleAndIndex (0.07 sec)

  1. android/guava-tests/test/com/google/common/math/QuantilesTest.java

      }
    
      public void testScale_index_compute_doubleCollection_empty() {
        Quantiles.ScaleAndIndex intermediate = Quantiles.scale(10).index(3);
        assertThrows(IllegalArgumentException.class, () -> intermediate.compute(EMPTY_DATASET));
      }
    
      public void testScale_index_compute_doubleVarargs_empty() {
        Quantiles.ScaleAndIndex intermediate = Quantiles.scale(10).index(3);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/QuantilesTest.java

      }
    
      public void testScale_index_compute_doubleCollection_empty() {
        Quantiles.ScaleAndIndex intermediate = Quantiles.scale(10).index(3);
        assertThrows(IllegalArgumentException.class, () -> intermediate.compute(EMPTY_DATASET));
      }
    
      public void testScale_index_compute_doubleVarargs_empty() {
        Quantiles.ScaleAndIndex intermediate = Quantiles.scale(10).index(3);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/Quantiles.java

     *
     * <p>When calling {@link ScaleAndIndex#compute} (in {@linkplain ScaleAndIndexes#compute either
     * form}), the memory requirement is 8*N bytes for the copy of the dataset plus an overhead which is
     * independent of N (but depends on the quantiles being computed). When calling {@link
     * ScaleAndIndex#computeInPlace computeInPlace} (in {@linkplain ScaleAndIndexes#computeInPlace
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 30.1K bytes
    - Viewed (0)
Back to top