Hi,
I use the example in #512. I have two naive questions.
- I am trying to use a different
measure and kernel inprobnum's bayesquad function. Did I make something wrong in the argument?
from probnum.quad import bayesquad
from probnum.quad.integration_measures LebesgueMeasure
from probnum.randprocs.kernels import ExpQuad
bayesquad(f, 2, domain=domain, measure=LebesgueMeasure, kernel=ExpQuad)
- Here the
domain for the two inputs are both
Can I specify different domains, such as
domain = np.array([[-3, 3],[0, 1]])
Expect your reply. Thanks!