integral2 array output
4 ビュー (過去 30 日間)
古いコメントを表示
I have a 3x3 matrix function F(x,y) which depends on a columnvector and multiple constants, i.e., F is a complex combination of the vector and constants (norm, inner products, outer products and more). The vector itself consists of at least two varibles over which i want to integrate.
I defined the constants within the function F and it works fine with integral(F,x,lims,'ArrayValued',true) when I fix one of the variables, but I have issues getting the integral2 to work due to the lack of the ArrayValued option. Is there any workaround like the one below? E.g. with nested integral functions or other options?
F=integral(@calcF,x_min,x_max,'ArrayValued',true)
function F=calcF(x,y)
F=integral(@calcFy,y_min,y_max,'ArrayValued',true) %don't know how to forward each x value in this case
end
0 件のコメント
回答 (1 件)
Sylvain Lacaze
2020 年 1 月 8 日
Hi HSch,
Please refer to this answer, for an explanation, and alternatives:
HTH,
Sylvain
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!