how to code for finding the upper limit (Tmax) in this equation ∫(30 TO Tmax)[80*(​1.787+0.00​3T)dT=2.09

1 view (last 30 days)
∫(30 TO Tmax)[80*(1.787+0.003T)dT=2.09 how to code for finding the upper limit in integration

Answers (1)

Torsten
Torsten on 28 Jul 2015
fun=@(T)(80*(1.787+0.003*T));
Tmax=fzero(@(x)integral(fun,30,x)-2.09,[30 31]);
Best wishes
Torsten.

Categories

Find more on Discrete Math in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!