fplot() for three functions
2 views (last 30 days)
Show older comments
I wonder why my fplot()s output errors instead of the graph below?
0 Comments
Accepted Answer
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)
More Answers (0)
See Also
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!