フィルターのクリア

How to plot an Integral

22 ビュー (過去 30 日間)
Ali Deniz
Ali Deniz 2021 年 10 月 19 日
コメント済み: Ali Deniz 2021 年 10 月 19 日
How can I plot the integral
((2mg)/(2mg-rho*s*Cd*V^2)dv)
from 0 to 61.6318493
m=0.023
g=9.81
rho=1.2
s=0.00011
Cd=0.9

採用された回答

Walter Roberson
Walter Roberson 2021 年 10 月 19 日
編集済み: Walter Roberson 2021 年 10 月 19 日
Q = @(x) sym(x);
m = Q(0.023);
g = Q(9.81);
rho = Q(1.2);
s = Q(0.00011);
Cd = Q(0.9);
syms v V real
f =(2 .* m .* g) ./ (2 .* m .* g - rho .* s .* Cd .* v.^2);
F = int(f,0,V)
F = 
fplot(F, [0, 61.6318493])
format long g
boundary = sqrt(125350/33)
boundary =
61.6318493028146
Looks like your upper bound is exactly the boundary after which the integral becomes infinite.
  1 件のコメント
Ali Deniz
Ali Deniz 2021 年 10 月 19 日
Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by