fplot() for three functions

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

 Accepted 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)

3 Comments

What should we change for the third fplot? There isn't t.*exp but error still exist.
You need to use
exp(-4*t).*cos(3*t)
and
exp(-4*t).*sin(3*t)
That works! Thanks a lot!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!