statistics-0.14.0.1: A library of statistical types, data, and functions

Copyright(c) 2011 Aleksey Khudyakov
LicenseBSD3
Maintainerbos@serpentine.com
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell98

Statistics.Distribution.CauchyLorentz

Contents

Description

The Cauchy-Lorentz distribution. It's also known as Lorentz distribution or Breit–Wigner distribution.

It doesn't have mean and variance.

Synopsis

Documentation

data CauchyDistribution Source #

Cauchy-Lorentz distribution.

Instances

Eq CauchyDistribution Source # 
Data CauchyDistribution Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CauchyDistribution -> c CauchyDistribution #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CauchyDistribution #

toConstr :: CauchyDistribution -> Constr #

dataTypeOf :: CauchyDistribution -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c CauchyDistribution) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CauchyDistribution) #

gmapT :: (forall b. Data b => b -> b) -> CauchyDistribution -> CauchyDistribution #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CauchyDistribution -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CauchyDistribution -> r #

gmapQ :: (forall d. Data d => d -> u) -> CauchyDistribution -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CauchyDistribution -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CauchyDistribution -> m CauchyDistribution #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CauchyDistribution -> m CauchyDistribution #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CauchyDistribution -> m CauchyDistribution #

Read CauchyDistribution Source # 
Show CauchyDistribution Source # 
Generic CauchyDistribution Source # 
ToJSON CauchyDistribution Source # 
FromJSON CauchyDistribution Source # 
Binary CauchyDistribution Source # 
ContGen CauchyDistribution Source # 
Entropy CauchyDistribution Source # 
MaybeEntropy CauchyDistribution Source # 
ContDistr CauchyDistribution Source # 
Distribution CauchyDistribution Source # 
type Rep CauchyDistribution Source # 
type Rep CauchyDistribution = D1 (MetaData "CauchyDistribution" "Statistics.Distribution.CauchyLorentz" "statistics-0.14.0.1-5c5AR88qYXNBEkm1yvRri0" False) (C1 (MetaCons "CD" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "cauchyDistribMedian") SourceUnpack SourceStrict DecidedUnpack) (Rec0 Double)) (S1 (MetaSel (Just Symbol "cauchyDistribScale") SourceUnpack SourceStrict DecidedUnpack) (Rec0 Double))))

cauchyDistribMedian :: CauchyDistribution -> Double Source #

Central value of Cauchy-Lorentz distribution which is its mode and median. Distribution doesn't have mean so function is named after median.

cauchyDistribScale :: CauchyDistribution -> Double Source #

Scale parameter of Cauchy-Lorentz distribution. It's different from variance and specify half width at half maximum (HWHM).

Constructors

cauchyDistribution Source #

Arguments

:: Double

Central point

-> Double

Scale parameter (FWHM)

-> CauchyDistribution 

Cauchy distribution

cauchyDistributionE Source #

Arguments

:: Double

Central point

-> Double

Scale parameter (FWHM)

-> Maybe CauchyDistribution 

Cauchy distribution

standardCauchy :: CauchyDistribution Source #

Standard Cauchy distribution. It's centered at 0 and and have 1 FWHM