Am I finding the Step and Impulse Response Correctly?

1 vue (au cours des 30 derniers jours)
ha9981
ha9981 le 31 Oct 2012
Given the function: dy(t)/dt + 3y(t) = x(t)
step([1],[1,3],t);
impulse([1],[1,3],x,t);

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 31 Oct 2012
Modifié(e) : Azzi Abdelmalek le 31 Oct 2012
t=0:0.1:10
step([1],[1,3],t);
%or
y=step([1],[1,3],t);
plot(y)
%and
impulse([1],[1,3],t);
%or
y=impulse([1],[1,3],t);
plot(y)
%or
N=1;
D=[1 3];
model=tf(N,D)
step(model)
figure
impulse(model)
%if x(t) is any input signal use
t=0:0.1:10;
x=exp(-t)
lsim(model,x,t)

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB 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