Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testPopulationStandardDeviation (0.16 sec)

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

            .isWithin(ALLOWED_ERROR * LONG_MANY_VALUES_SUM_OF_SQUARES_OF_DELTAS)
            .of(LONG_MANY_VALUES_SUM_OF_SQUARES_OF_DELTAS / LONG_MANY_VALUES_COUNT);
      }
    
      public void testPopulationStandardDeviation() {
        assertThrows(IllegalStateException.class, () -> emptyAccumulator.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/StatsTest.java

        assertThat(LARGE_LONG_VALUES_STATS.populationVariance())
            .isWithin(ALLOWED_ERROR * Long.MAX_VALUE * Long.MAX_VALUE)
            .of(LARGE_LONG_VALUES_POPULATION_VARIANCE);
      }
    
      public void testPopulationStandardDeviation() {
        assertThrows(
            IllegalStateException.class, () -> EMPTY_STATS_VARARGS.populationStandardDeviation());
        assertThrows(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

            .isWithin(ALLOWED_ERROR * LONG_MANY_VALUES_SUM_OF_SQUARES_OF_DELTAS)
            .of(LONG_MANY_VALUES_SUM_OF_SQUARES_OF_DELTAS / LONG_MANY_VALUES_COUNT);
      }
    
      public void testPopulationStandardDeviation() {
        assertThrows(IllegalStateException.class, () -> emptyAccumulator.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top