Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for testSampleCovariance (0.12 seconds)

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

        assertThat(CONSTANT_VALUES_PAIRED_STATS.populationCovariance()).isWithin(ALLOWED_ERROR).of(0.0);
      }
    
      public void testSampleCovariance() {
        assertThrows(IllegalStateException.class, EMPTY_PAIRED_STATS::sampleCovariance);
        assertThrows(IllegalStateException.class, ONE_VALUE_PAIRED_STATS::sampleCovariance);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/math/PairedStatsTest.java

        assertThat(CONSTANT_VALUES_PAIRED_STATS.populationCovariance()).isWithin(ALLOWED_ERROR).of(0.0);
      }
    
      public void testSampleCovariance() {
        assertThrows(IllegalStateException.class, EMPTY_PAIRED_STATS::sampleCovariance);
        assertThrows(IllegalStateException.class, ONE_VALUE_PAIRED_STATS::sampleCovariance);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

        assertThat(constantValuesAccumulatorByAddAllPartitionedPairedStats.populationCovariance())
            .isWithin(ALLOWED_ERROR)
            .of(0.0);
      }
    
      public void testSampleCovariance() {
        assertThrows(IllegalStateException.class, () -> emptyAccumulator.sampleCovariance());
        assertThrows(
            IllegalStateException.class,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 23.5K bytes
    - Click Count (0)
Back to Top