How to plot functions
Show older comments
How to plot (exp(-0.2*x)*sin(x+2)=0.1) and (y=1 + exp(-0.2*x)*sin(x+2)
cant get the graph to show up... need help
Answers (2)
Paulo Silva
on 30 Mar 2011
One way to do it
ezplot('y=1 + exp(-0.2*x)*sin(x+2)')
Matt Fig
on 30 Mar 2011
Another way
f = @(x) 1 + exp(-0.2*x).*sin(x+2); % Define the function.
x = -20:.01:20; % Define an x range for the plot;
plot(x,f(x))
Categories
Find more on Get Started with MATLAB 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!