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)