class MoreMath::ChiSquareDistribution

def initialize(df)

Creates a ChiSquareDistribution for +df+ degrees of freedom.
def initialize(df)
  @df = df
  @df_half = @df / 2.0
end