IntegrationMeasure¶
- class probnum.quad.integration_measures.IntegrationMeasure(domain, input_dim)¶
Bases:
ABCAn abstract class for a measure against which a target function is integrated.
Child classes implement specific integration measures and, if available, make use of random variables for sampling and evaluation of the density function.
- Parameters:
domain (DomainLike) – Domain of integration. Contains lower and upper bound as a scalar or
np.ndarray.input_dim (Optional[IntLike]) – Dimension of the integration domain.
Methods Summary
__call__(points)Evaluate the density function of the integration measure.
sample(n_sample, rng)Sample
n_samplepoints from the integration measure.Methods Documentation