ODE non homogeneous ploting graph

2 views (last 30 days)
hello, everybody, is there any body who can help me to plot this equation in matlab.
y = -5e^2x+3e^x+3cosx+sinx
thanks.
  1 Comment
Renato SL
Renato SL on 19 Sep 2019
I think the documentation of the plot function (here) will help a lot.

Sign in to comment.

Accepted Answer

Stephan
Stephan on 19 Sep 2019
Edited: Stephan on 19 Sep 2019
y = @(x) -5.*exp(2.*x) + 3.*exp(x) + 3.*cos(x) + sin(x);
fplot(y,[-20 1],'b-',"LineWidth",2)

More Answers (0)

Categories

Find more on Programming 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!