Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 764 Bytes

Composite.to_gaussian.md

File metadata and controls

29 lines (18 loc) · 764 Bytes

Composite.to_gaussian (function)

def to_gaussian(self, N=1000, bins=10, range=None)

Convert the Composite distribution to a Gaussian distribution via a Histogram distribution.

Under-the-hood, this calls Composite.to_histogram with the requested values of N, bins, and range and then calls Histogram.to_gaussian.

Arguments

  • N (int, optional, default=1000): number of samples to use for the histogram.
  • bins (int, optional, default=10): number of bins to use for the histogram.
  • range (tuple or None): range to use for the histogram.

Returns