Skip to content
View oliverClimbs's full-sized avatar

Block or report oliverClimbs

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. VolumeButtonDemo VolumeButtonDemo Public

    Demo of using BroadcastReceiver to monitor volume changes.

    Kotlin 2

  2. SimpleKalmanFilter SimpleKalmanFilter Public

    A simple class to perform Kalman Filter operation.

    Kotlin

  3. Fitness Fitness Public

    A simple singleton class that calculates fitness related values.

    Kotlin

  4. MovingAverage MovingAverage Public

    Calculate time-based moving average.

    Kotlin

  5. Class to calculate standard deviatio... Class to calculate standard deviation from discrete data points.
    1
    class StandardDeviation
    2
    {
    3
      var count = 0
    4
      private var sum = 0.0
    5
      private var sumSquared = 0.0
  6. Functions to calculate altitude from... Functions to calculate altitude from air pressure and vice versa.
    1
    // Source: https://www.mide.com/air-pressure-at-altitude-calculator
    2
    private const val Tb = 288
    3
    private const val Lb = -0.0065
    4
    private const val R = 8.31432
    5
    private const val g0 = 9.80665