integral definite, what is the code to implement it?
7 ビュー (過去 30 日間)
古いコメントを表示
I have to imlement this integral...help.
3 件のコメント
回答 (2 件)
Walter Roberson
2019 年 9 月 23 日
Assuming omega is a numeric vector and that an output is to be created for each:
syms pi rho Omega W r R
expr = 2*pi*rho*(Omega- W/2)*W*r^3;
Tn_inf = int(expr, r, 0, R);
all_Tn_inf = subs(Tn_inf, Omega, omega);
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!