You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The QuadGK package automatically transforms infinite intervals to finite ones with a change of variables. Most integration packages do not do this for you — you have to change variables yourself, e.g. as described here.
It would be a nice feature to do this automatically in HCubature, however.
Maybe I can have a look during the winter break. It doesn't sound too complicated and it seems that copying the relevant code from QuadGK should be sufficient.
I would like to integrate a two-dimensional function from -Inf to Inf. To explore my possiblities, I wrote this simple function
f(x) = x.^2 .*pdf.(Normal(), 2 .*x)
It works without problems when using QuadGK, but does not converge at all using HCubature:
Is this a well known problem?
The text was updated successfully, but these errors were encountered: