pynkowski.theory

This module contains all the theoretical predictions for the implemented fields. So far, they are the following:

  • temperature: Gaussian fields such as CMB temperature.
  • p2: $\chi^2$ fields, such as the modulus of the CMB polarization.

  • There is also a general utilities submodule called utils.

 1'''This module contains all the theoretical predictions for the implemented fields. So far, they are the following:
 2
 3- [`temperature`](theory/temperature.html): Gaussian fields such as CMB temperature.
 4- [`p2`](theory/p2.html): $\chi^2$ fields, such as the modulus of the CMB polarization.
 5
 6- There is also a general utilities submodule called [`utils`](theory/utils.html).
 7'''
 8
 9
10import numpy as np
11import scipy.stats
12
13norm = scipy.stats.norm()
14
15from .utils import get_μ, define_mu, define_us_for_V
16from .temperature import TheoryTemperature
17from .p2 import TheoryP2
18
19
20#__all__ = ["get_μ",
21           #"TheoryTemperature",
22           #"TheoryP2"]
23
24__docformat__ = "numpy"