How to find output of system with impulse response function
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mandeep Kaur
am 9 Feb. 2022
Beantwortet: Bhavana Ravirala
am 14 Feb. 2022
How i can find the output of system with impulse response function h(t) = sin(t) u(t) for input f(t) = exp(-t)u(t) in MATLAB?
0 Kommentare
Akzeptierte Antwort
Bhavana Ravirala
am 14 Feb. 2022
Hi Mandeep,
From my understanding you are trying to find output of the system which can be obtained by convolution of input and impulse response. The convolution can be obtained by product of Laplace transform of both the signals.
syms t; % t is a variable
impulseResponce=exp(-t);
input=sin(t);
k=laplace(impulseResponse)*laplace(input); % product of laplace transforms
output=ilaplace(k); % inverse laplace transform
For more information refer to the documentations below:
Hope this helps.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Calculus finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!