Newton Law - Cooling of a Cake
Show older comments
syms T(t) k
Tm=70;
f = diff(T) == k * (T-Tm)
dsolve(f)
%FIND K
T = dsolve(f, T(0)==300)
k = dsolve(T,T(3)==200)
%I want to apply t=3 and T=200 at the T formula to find the k value and
%then I need insert the k value in the T formula to get my final answer
Accepted Answer
More Answers (0)
Categories
Find more on Symbolic Math Toolbox 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!