Sidereon.Reliability.ReliabilityOptions (Sidereon v0.17.0)

Copy Markdown View Source

Options for classical reliability calculations.

:alpha is the two-sided false-alarm probability for the w-test. :power is the target detection power. :lambda0_override may supply a precomputed noncentrality parameter. :min_redundancy is the reporting floor below which an observation is marked uncheckable.

Summary

Functions

Return the core default reliability options.

Build reliability options from a keyword list.

Types

t()

@type t() :: %Sidereon.Reliability.ReliabilityOptions{
  alpha: float(),
  lambda0_override: float() | nil,
  min_redundancy: float(),
  power: float()
}

Functions

default()

@spec default() :: t()

Return the core default reliability options.

new(opts \\ [])

@spec new(keyword()) :: t()

Build reliability options from a keyword list.