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

Portabilityportable
Stabilityexperimental
Maintainerbos@serpentine.com
Safe HaskellNone

Statistics.Distribution.Transform

Description

Transformations over distributions

Synopsis

Documentation

data LinearTransform d Source

Linear transformation applied to distribution.

 LinearTransform μ σ _ x' = μ + σ·

Constructors

LinearTransform 

Fields

linTransLocation :: !Double

Location parameter.

linTransScale :: !Double

Scale parameter.

linTransDistr :: d

Distribution being transformed.

linTransFixedPoint :: LinearTransform d -> DoubleSource

Get fixed point of linear transformation

scaleAroundSource

Arguments

:: Double

Fixed point

-> Double

Scale parameter

-> d

Distribution

-> LinearTransform d 

Apply linear transformation to distribution.