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

ai.salmonbrain.ruleofthumb.BaseStatTest.scala Maven / Gradle / Ivy

The newest version!
package ai.salmonbrain.ruleofthumb

import org.apache.commons.math3.distribution.NormalDistribution

trait BaseStatTest {
  val normalDistribution = new NormalDistribution(0, 1)
  val EPS = 1e-10

  def sampleSizeEstimation: Long = ???
  def square(x: Double): Double = {
    x * x
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy