Double Integral Question to solve ...
1 回表示 (過去 30 日間)
古いコメントを表示
Any suggestion to solve this?!!!!
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/152850/image.jpeg)
the int command cant solve this and if i want to use integral2 i will face the error because of symbolic intervals of y
0 件のコメント
回答 (1 件)
Walter Roberson
2013 年 11 月 6 日
int() might not be able to handle it directly, but it might be able to handle the inner integration. If so then do that and then matlabFunction() to convert it to a function handle that you can pass to integral()
2 件のコメント
Walter Roberson
2013 年 11 月 6 日
The inner integral is
((2/3 * ((1/2) * x^(1/3) - (1/2)* x^(5/3) + sqrt(1 - x^(2/3)) * sqrt(1 + x^(2/3)) * ellipticf(x^(1/3), i))) * sqrt(1-x^4) + (1/3 * (-2 * sqrt(-(-1 + x^2) * (1 + x^2)) * ellipticf(x, i) - x + x^5)) * sqrt(1-x^(4/3))) / (sqrt(1 - x^(4/3)) * sqrt(1-x^4))
I think I might be able to come up with a better representation... let me check.
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!