Please help me code this
1 回表示 (過去 30 日間)
古いコメントを表示
1 件のコメント
John D'Errico
2022 年 7 月 11 日
Stop posting your homework problems You have gotten two of them solved. Enough. Answers is not a homework solving service.
採用された回答
その他の回答 (1 件)
Torsten
2022 年 7 月 11 日
c = integral(@(x)integral(@(y)sqrt(x.^2+y.^2),0,sqrt(2*x-x.^2)),0,2,'ArrayValued',true)
syms x y
c = int(int(sqrt(x^2+y^2),y,0,sqrt(2*x-x^2)),x,0,2)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!