We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Probably stick with gaussian quadrature, maybe in the growth model and only with normal distributions? Just go nodes, weights = gausshermite(n)
nodes, weights = gausshermite(n)
Can also show the adaptation for a normal that isn't
function gaussian_nodes_weights(mu, sigma, n) gh = gausshermite(n) nodes = gh[1] .* (sqrt(2) * (sigma)) .+ mu weights = gh[2] ./ sqrt(pi) return nodes, weights end
or something like that.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Probably stick with gaussian quadrature, maybe in the growth model and only with normal distributions? Just go
nodes, weights = gausshermite(n)
Can also show the adaptation for a normal that isn't
or something like that.
The text was updated successfully, but these errors were encountered: