How to plot LTI system for below question.

4 vues (au cours des 30 derniers jours)
Aravind Tulluri
Aravind Tulluri le 18 Oct 2019
Commenté : Dinesh Aradhya le 20 Oct 2019
How to Plot the output of LTI system where input is ?[?] = [8,6,3,9] and system response, ℎ[?] = [1,1,6,0] without using inbuilt command of MATLAB ?
  2 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 18 Oct 2019
Have you tried?
Dinesh Aradhya
Dinesh Aradhya le 20 Oct 2019
yes

Connectez-vous pour commenter.

Réponses (1)

Katarina Vuckovic
Katarina Vuckovic le 19 Oct 2019
x=[8 6 3 9]
h= [1 1 6 0]
m=length(x);
n=length(h);
X=[x,zeros(1,n)];
H=[h,zeros(1,m)];
for i=1:n+m-1
Y(i)=0;
for j=1:m
if(i-j+1>0)
Y(i)=Y(i)+X(j)*H(i-j+1);
else
end
end
end
Y

Catégories

En savoir plus sur Numerical Integration and Differentiation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by