View Source Chi2fit.Distribution.SEP (Chi-SquaredFit v2.0.2)

The Skew Exponential Power cumulative distribution (Azzalini).

options

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

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

@type t() :: %Chi2fit.Distribution.SEP{
  name: String.t(),
  offset: number() | nil,
  options: Keyword.t(),
  pars: [number()] | nil
}