All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quantarray.anaheim.numerics.StandardDeviation.scala Maven / Gradle / Ivy

package com.quantarray.anaheim.numerics

object StandardDeviation {

  /**
   * Computes standard deviation of the entire population.
   */
  def forPopulationOf(xs: Seq[Double]): Double = math.sqrt(Variance.forPopulationOf(xs))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy