I'm a beginner, I can't make it identical. Can someone help me?
The expression is: cos(2*pi*t)*exp(-t)

 Accepted Answer

t = 0:0.1:5;
x = cos(2*pi*t).*exp(-t);
plot(t, x);
xlabel('t');
ylabel('x(t)');

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!