Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for populationCovariance (0.19 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;
        }
    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)
Back to top