LebesgueMeasure¶
- class probnum.quad.LebesgueMeasure(domain, dim=None, normalized=False)¶
Bases:
probnum.quad.IntegrationMeasureLebesgue measure on a hyper-rectangle.
- Parameters
dim (
Optional[Integral]) – Dimension of the integration domaindomain (
Tuple[Union[ndarray,Real],Union[ndarray,Real]]) – Tuple which contains two arrays which define the start and end points, respectively, of the rectangular integration domain.normalized (
Optional[bool]) – Boolean which controls whether or not the measure is normalized (i.e., integral over the domain is one).
Methods Summary
__call__(points)Evaluate the density function of the integration measure.
sample(rng, n_sample)Sample
n_samplepoints from the integration measure.Methods Documentation