Unrecognized function or variable 'Newton_Starbucks'.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
T0 = 140; %intial temperature of the body
T20 = 80; %temperature of the body after 20 minutes
TR = 22; %temperature of the air
tspan = [0 35]
[t,T] = ode45(@Newton_Starbucks,tspan,T0)
0 Commenti
Risposta accettata
the cyclist
il 1 Feb 2023
I searched the internet for "Newton_Starbucks". The only link I found was this one. If that's relevant, then it seems to me that you need to define
function Tprime=Newton_Starbucks(t,T)
r=.001;
T_ambient=75;
Tprime=-r*(T-T_ambient);
end
and make sure your code can find it.
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!