Crate basic_stochastics

Source
Expand description

§Basic Stochastics

basic_stochastics is a small collection of utilities to make performing basic stochastic calculations more convenient.

Constants§

Functions§

  • Calculates the average of the given vector.
  • Calculates the square root of the variance, representing the scattering of the given data
  • Determines, whether the given value matches the given sigma environment using the given µ and σ values. You can either provide a specific sigma environment or use one from the given constants. Please see https://en.wikipedia.org/wiki/Normal_distribution and sigma rooms for further information.
  • Determines, whether the given value matches the given sigma environment of the given data’s normal distribution. You can either provide a specific sigma environment or use one from the given constants. Please see https://en.wikipedia.org/wiki/Normal_distribution and sigma rooms for further information.
  • Calculates the variance of the given vector. Please see https://en.wikipedia.org/wiki/Variance for further explanation.