plot zero input response
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Aaron8298
am 10 Feb. 2021
Beantwortet: randerss simil
am 11 Feb. 2021
I am trying to plot the zero input response 

Here is the code i have so far
syms y
n=0:99;
a_1=3;
a_2=4;
x=(-1/5*y(-1)+4/5*y(-2))*(-1)^n+(16/5*y(-1)+16/5*y(-2))*(4)^n;
plot(0:99,x)
0 Kommentare
Akzeptierte Antwort
randerss simil
am 11 Feb. 2021
%if true
syms y
n=0:99;
a_1=3;
a_2=4;
x=(-1/5*y+4/5*y)*(-1).^n+(16/5*y+16/5*y)*(4).^n;
fplot(x,[-2,-1])
Use fplot
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!