Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for sampleCovariance (0.2 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 or contains a single value
       */
      public final double sampleVariance() {
        checkState(count > 1);
        if (isNaN(sumOfSquaresOfDeltas)) {
          return NaN;
        }
        return ensureNonNegative(sumOfSquaresOfDeltas) / (count - 1);
      }
    
      /**
       * Returns the <a
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  2. android/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 or contains a single value
       */
      public double sampleVariance() {
        checkState(count > 1);
        if (isNaN(sumOfSquaresOfDeltas)) {
          return NaN;
        }
        return ensureNonNegative(sumOfSquaresOfDeltas) / (count - 1);
      }
    
      /**
       * Returns the <a
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 22K bytes
    - Viewed (0)
Back to top