fplot() for three functions

2 views (last 30 days)
Shuqing Qi
Shuqing Qi on 6 Feb 2021
Commented: Shuqing Qi on 7 Feb 2021
I wonder why my fplot()s output errors instead of the graph below?

Accepted Answer

Alan Stevens
Alan Stevens on 6 Feb 2021
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
Alan Stevens
Alan Stevens on 6 Feb 2021
You need to use
exp(-4*t).*cos(3*t)
and
exp(-4*t).*sin(3*t)
Shuqing Qi
Shuqing Qi on 7 Feb 2021
That works! Thanks a lot!

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots 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!