Chi-SquaredFit v1.0.0-beta.1 Distribution.SEP View Source

The Skew Exponential Power cumulative distribution (Azzalini).

Options

`:method` - the integration method to use, :gauss and :romberg types are supported, see below
`:tolerance` - re-iterate until the tolerance is reached (only for :romberg)
`:points` - the number of points to use in :gauss method

Integration methods

`:gauss` - n-point Gauss rule,
`:gauss2` - n-point Guass rule with tanh transformation,
`:gauss3` - n-point Gauss rule with linear transformstion,
`:romberg` - Romberg integration,
`:romberg2` - Romberg integration with tanh transformation,
`:romberg3` - Romberg integration with linear transformstion.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Distribution.SEP{
  offset: number() | nil,
  options: Keyword.t(),
  pars: [number()] | nil
}