VanillaBayesianQuadrature¶
-
class
probnum.quad.VanillaBayesianQuadrature[source]¶ Bases:
probnum.quad.BayesianQuadratureVanilla Bayesian quadrature in 1D.
Methods Summary
integrate(fun, fun0, domain, nevals, **kwargs)Integrate the function fun.Methods Documentation
-
integrate(fun, fun0, domain, nevals, **kwargs)[source]¶ Integrate the function
fun.Parameters: - fun (function) – Function to be integrated.
- fun0 (RandomProcess) – Stochastic process modelling function to be integrated.
- domain (ndarray, shape=()) – Domain to integrate over.
- nevals (int) – Number of function evaluations.
-