Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for logarithm (0.19 sec)

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

        if (x > 0.0 && isFinite(x)) {
          long significand = getSignificand(x);
          return (significand & (significand - 1)) == 0;
        }
        return false;
      }
    
      /**
       * Returns the base 2 logarithm of a double value.
       *
       * <p>Special cases:
       *
       * <ul>
       *   <li>If {@code x} is NaN or less than zero, the result is NaN.
       *   <li>If {@code x} is positive infinity, the result is positive infinity.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 18.9K bytes
    - Viewed (0)
Back to top