Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for calculateNewMeanNonFinite (0.08 sec)

  1. guava/src/com/google/common/math/Stats.java

    import static com.google.common.base.Preconditions.checkState;
    import static com.google.common.math.DoubleUtils.ensureNonNegative;
    import static com.google.common.math.StatsAccumulator.calculateNewMeanNonFinite;
    import static java.lang.Double.NaN;
    import static java.lang.Double.doubleToLongBits;
    import static java.lang.Double.isFinite;
    import static java.lang.Double.isNaN;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/StatsAccumulator.java

            double delta = value - mean;
            mean += delta / count;
            sumOfSquaresOfDeltas += delta * (value - mean);
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
            sumOfSquaresOfDeltas = NaN;
          }
          min = Math.min(min, value);
          max = Math.max(max, value);
        }
      }
    
      /**
       * Adds the given values to the dataset.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top