how to plot this ?

1 view (last 30 days)
Tomer Segev
Tomer Segev on 21 Oct 2020
Commented: Tomer Segev on 21 Oct 2020
syms x;
y=exp(-x).*sin(x);
plot(x,y);
hey, i want to plot this but for reaon I can't.. I didn't find any answer in previous questions.
can someone tell me where I am wrong ?

Answers (1)

Stephan
Stephan on 21 Oct 2020
syms x;
y=exp(-x).*sin(x);
fplot(x,y);
  4 Comments
Stephan
Stephan on 21 Oct 2020
BTW: Did you notice that you can accept and/or vote for useful answers?
Tomer Segev
Tomer Segev on 21 Oct 2020
OK, that's great! thank you!

Sign in to comment.

Categories

Find more on Line Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!