Perform convolution between the two given signals 𝑥(𝑡) = 5 cos 𝑡 and ℎ(𝑡) = 2𝑒 −|𝑡| . Verify the same using MATLAB.
2 views (last 30 days)
Show older comments
How to perform convolution.
1 Comment
Steven Lord
on 26 Jan 2022
This sounds like a homework assignment. If it is, show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the free MATLAB Onramp tutorial (https://www.mathworks.com/support/learn-with-matlab-tutorials.html) to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.
Answers (1)
Kautuk Raj
on 2 Jun 2023
To perform convolution between the two given signals x(t) = 5cos(t) and h(t) = 2e^(-|t|), we can use the following steps:
- Define the time range over which to evaluate the signals using the t variable.
- Define the signals x and h as functions of t.
- Use the conv function to compute the convolution of x and h.
The MATLAB code to implement these steps:
% Define the time range over which to evaluate the signals
t = -10:0.01:10;
% Define the signals x and h
x = 5*cos(t);
h = 2*exp(-abs(t));
% Compute the convolution of x and h using the conv function
y = conv(x, h, 'same') * 0.01;
% Plot the signals x, h, and y
subplot(3, 1, 1);
plot(t, x);
title('Signal x(t) = 5cos(t)');
xlabel('Time (s)');
ylabel('Amplitude');
subplot(3, 1, 2);
plot(t, h);
title('Signal h(t) = 2e^{-|t|}');
xlabel('Time (s)');
ylabel('Amplitude');
subplot(3, 1, 3);
plot(t, y);
title('Convolution y(t) = x(t) * h(t)');
xlabel('Time (s)');
ylabel('Amplitude');
And this is the output:

0 Comments
See Also
Categories
Find more on Simulation, Tuning, and Visualization 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!