Convolution Problem of two Discrete Signal, using conv
Afficher commentaires plus anciens
Create the following discrete time signal in Matlab
n = -10:1:10;
x[n] = u[n] – u[n-1];
h[n] = 2n u[n];
where u[n] is the unit step function.
Use the ‘conv’ function for computing the convolution of the
corresponding signals and plot all the signals using subplot()
command
1 commentaire
Ameer Hamza
le 30 Avr 2020
The question explains everything you need to do. Since this is a homework question so read here first: https://www.mathworks.com/matlabcentral/answers/8626-how-do-i-get-help-on-homework-questions-on-matlab-answers
Réponses (2)
Ameer Hamza
le 30 Avr 2020
0 votes
Since this is a homework question, so I cannot give you an answer, but point you to resources that will help you to complete it.
Create vector n: https://www.mathworks.com/help/matlab/ref/colon.html
unit step function: https://www.mathworks.com/help/symbolic/heaviside.html
convolution: https://www.mathworks.com/help/matlab/ref/conv.html
Gui Chen
le 21 Jan 2021
0 votes
You could take a look at this video. https://youtu.be/JlUM0XHTSSQ
Catégories
En savoir plus sur Correlation and Convolution dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!