2016-11-22 106 views
0

我試圖計算傳遞函數G=1/s^2的階躍和脈衝響應。我使用MATLAB命令tf這裏是代碼使用Matlab傳遞函數

num = [1 ]; 
den = [1 0 0]; 
G = tf(num,den); 
step(G); 
impulse(G); 

我的問題是,他們不具有相同的Y軸和X軸的規模,MATLAB似乎給他們的隨機數。我該如何改變,使得y軸從0到100,對於x軸,對於階躍和衝動都是相同的?

回答

1
step(G,100); % sets the final time 
axis([0 100 0 100]); % sets the x-axis and y-axis limits for the current axes 
figure 
impulse(G,100); 
axis([0 100 0 100]); 
+0

謝謝,它的作品! –

+0

@Planet_hunter [Accepts](http://stackoverflow.com/help/accepted-answer)比感謝還要好。 :) – beaker