convolution of two syms signal
24 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
syms i(t) k(t)
i(t)=2*t*rectangularPulse(0,1,t);
k(t)=2*triangularPulse(t/2)-triangularPulse(t);
how can i convo this two signal?
0 comentarios
Respuestas (1)
Paul
el 24 de Dic. de 2022
Editada: Paul
el 24 de Dic. de 2022
1 comentario
Paul
el 19 de En. de 2023
syms i(t) k(t)
i(t)=2*t*rectangularPulse(0,1,t);
k(t)=2*triangularPulse(t/2)-triangularPulse(t);
syms tau
c(t) = int(i(tau)*k(t-tau),tau,-inf,inf);
fplot([i(t) k(t) c(t)])
legend('i(t)','k(t)', 'i(t)*k(t)')
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
