Impulse response and step response Please help

17 Ansichten (letzte 30 Tage)
shabaz lee
shabaz lee am 20 Feb. 2018
How do you find impulse response and step response for the function
y(n) = (3/5)^(n)y(n-1) + x(n) for 0<n<20 discrete
This is what i have, can someone help me for n=0:20;
imp = [1; zeros(20,1)]; step = 1;
b = 1;
a = [1 -0.6*exp(n)];
h = filter(b,a,imp);
m = filter(b,a,step);
plot(n,h);
plot(n,m);
end

Antworten (1)

Abhishek Ballaney
Abhishek Ballaney am 21 Feb. 2018
https://in.mathworks.com/help/control/ref/impulse.html
https://in.mathworks.com/help/control/ref/step.html

Kategorien

Mehr zu Simulation, Tuning, and Visualization finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by