Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for populationVariance (0.09 sec)

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

       * Double#NEGATIVE_INFINITY}, or {@link Double#NaN}) then the result is {@link Double#NaN}.
       *
       * @throws IllegalStateException if the dataset is empty
       */
      public final double populationVariance() {
        checkState(count != 0);
        if (isNaN(sumOfSquaresOfDeltas)) {
          return NaN;
        }
        if (count == 1) {
          return 0.0;
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/Stats.java

       * Double#NEGATIVE_INFINITY}, or {@link Double#NaN}) then the result is {@link Double#NaN}.
       *
       * @throws IllegalStateException if the dataset is empty
       */
      public double populationVariance() {
        checkState(count > 0);
        if (isNaN(sumOfSquaresOfDeltas)) {
          return NaN;
        }
        if (count == 1) {
          return 0.0;
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top