Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for interpolation (1.11 sec)

  1. android/guava/src/com/google/common/math/Quantiles.java

     * it being arbitrarily reordered, and you want to avoid that copy, you can use {@code
     * computeInPlace} instead of {@code compute}.
     *
     * <h3>Definition and notes on interpolation</h3>
     *
     * <p>The definition of the kth q-quantile of N values is as follows: define x = k * (N - 1) / q; if
     * x is an integer, the result is the value which would appear at index x in the sorted dataset
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 30.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/QuantilesTest.java

                0, 1.0,
                1, 1.5,
                2, 2.0,
                8, 5.0,
                9, POSITIVE_INFINITY, // interpolating between 5.0 and POSITIVE_INFINITY
                10, POSITIVE_INFINITY);
      }
    
      public void testScale_index_compute_doubleCollection_positiveInfinity() {
        // interpolating between 5.0 and POSITIVE_INFINITY
        assertThat(Quantiles.scale(10).index(9).compute(ONE_TO_FIVE_AND_POSITIVE_INFINITY))
    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. guava-tests/test/com/google/common/math/QuantilesTest.java

                0, 1.0,
                1, 1.5,
                2, 2.0,
                8, 5.0,
                9, POSITIVE_INFINITY, // interpolating between 5.0 and POSITIVE_INFINITY
                10, POSITIVE_INFINITY);
      }
    
      public void testScale_index_compute_doubleCollection_positiveInfinity() {
        // interpolating between 5.0 and POSITIVE_INFINITY
        assertThat(Quantiles.scale(10).index(9).compute(ONE_TO_FIVE_AND_POSITIVE_INFINITY))
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top