MATLAB: Fplot() for three functions

functionplot

I wonder why my fplot()s output errors instead of the graph below?

Best Answer

Try using limits, e.g.
fplot(@(t) 16/3*exp(-2*t)-4/3*exp(-8*t), [0 20]);
Also use
t.*exp(...etc) not t*exp(...etc)