作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以使用 quadgk
在 Julia 中进行单变量数值积分.一些简单的例子:
julia> f(x) = cos(x)
f (generic function with 1 method)
julia> quadgk(f, 0, pi)
(8.326672684688674e-17,0.0)
julia> quadgk(f, 0, pi/2)
(1.0,1.1102230246251565e-16)
julia> g(x) = cos(x)^2
g (generic function with 1 method)
julia> quadgk(g, 0, pi/2)
(0.7853981633974483,0.0)
julia> pi/4
0.7853981633974483
julia> quadgk( h, 0, pi/2, 0, pi/2)
ERROR: `h` has no method matching h(::Float64)
最佳答案
我想你会想看看 Cubature 包:
https://github.com/stevengj/Cubature.jl
可以说,quadgk
应该简单地从标准库中删除,因为它是有限的,只会误导人们不寻找进行集成的包。
关于julia - 如何在 Julia 中进行两个变量数值积分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29292614/
我是一名优秀的程序员,十分优秀!