This commit is contained in:
2025-11-17 11:16:02 +08:00
Unverified
parent 4bd2d87fc4
commit 1b3b07a7f6
35 changed files with 454 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
num=[1];
den=[1 2 2 1];
sys=tf(num,den);
figure(1); pzmap(sys); title('');
figure(2); impulse(sys);
w=0:0.1:10*pi;
figure(3); freqs(num,den,w)