Problem with integral function

1 Ansicht (letzte 30 Tage)
DARSHAN N KANNUR
DARSHAN N KANNUR am 16 Jun. 2020
Kommentiert: DARSHAN N KANNUR am 16 Jun. 2020
Hello, here is the code
ad=0.5*1.225*0.28*2.67;
rr=1305*cosd(0)*0.014*9.8;
fun = @(v) (940/((24000./v)-(rr+(ad.*v^2))));
pow= integral(fun,0,16.62)
These are the errors :
Error in integral (line 88)
Q = integralCalc(fun,a,b,opstruct);
Error in Untitled (line 7)
pow= integral(fun,0,16.62)

Akzeptierte Antwort

KSSV
KSSV am 16 Jun. 2020
Bearbeitet: KSSV am 16 Jun. 2020
Replace
fun = @(v) (940/((24000./v)-(rr+(ad.*v^2))));
with
fun = @(v) (940./((24000./v)-(rr+(ad.*v.^2))));

Weitere Antworten (0)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by