Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 MATLAB dblquad用于这样的方程:
f(x,y)=\int_{0}^{1}(exp(-int_{0}^{y}f(x)dx))dy
但它不起作用。这些类型的双重积分是否有合适的 MATLAB 函数?
非常感谢,mg
你有一个嵌套积分而不是一个双积分,所以dblquad不会工作。怎么样
dblquad
q = quad(@(y)arrayfun(@(w)exp(-quad(f,0,w)),y),0,1)