Integration with Symbolic Variables
古いコメントを表示
Hi,
I have a problem like that. How can i solve this?

3 件のコメント
Torsten
2023 年 5 月 12 日
What do you mean by "double integration problem" ? Is there a second integration variable apart from theta ?
Furkan KORKMAZ
2023 年 5 月 12 日
Dyuman Joshi
2023 年 5 月 14 日
@Furkan KORKMAZ please check the answers posted below.
採用された回答
その他の回答 (2 件)
Use integral() - see DOC
E.g.:
% Step 1. Create a function handle:
F = @(theta, a)sqrt((a*(1-cos(theta))).^2+(a*(1-sin(theta))).^2);
% Step 2. Compute the integral:
INT_F = integral(@(theta)F(theta, 10), 0, 2*pi)
Furkan KORKMAZ
2023 年 5 月 14 日
編集済み: Furkan KORKMAZ
2023 年 5 月 14 日
0 投票
カテゴリ
ヘルプ センター および File Exchange で MATLAB についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
