Procs
proc epanechnikov(x: float): float {....raises: [], tags: [], forbids: [].}
- provides an Epanechnikov distribution Source Edit
proc gauss[T](x, mean, sigma: T; norm = false): float
-
Returns a value of the gaussian distribution described by mean, sigma at position x.
If norm is true the value will be normalized by 1 / sqrt(2Ï€).
Based on the ROOT implementation of TMath::Gaus: https://root.cern.ch/root/html524/src/TMath.cxx.html#dKZ4iB
Inputs are converted to float.
Source Edit proc triangular(x: float): float {....raises: [], tags: [], forbids: [].}
- provides a triangular distribution Source Edit
proc trigonometric(x: float): float {....raises: [], tags: [], forbids: [].}
- provides a trigonometric distribution Source Edit