有人可以告訴我最後一個劇情指令如何在後續劇本中起作用?Plot in child(Matlab)
close all;
s=tf('s');
sys1 = 5/(s+5);
sys2=exp(-1*s);
G=ss(sys1)*ss(sys2);
opts = bodeoptions('cstprefs');
opts.Grid= 'ON';
% create a figure and get the handle of the figure
figHnd = figure;
bode(G,opts)
% get and display the children handles of the figure
childrenHnd =get(figHnd, 'Children');
% select magnitude plot and plot a line
axes(childrenHnd(3));
hold on;
plot([1 1], [-20 20], 'r')
hold off;
我試圖爲截止頻率的水平線添加到我的波特圖(幅度圖),但我無法弄清楚如何做到這一點。當前的代碼爲我添加了一條垂直線。
更深入的比其他的答案。+1。 – rayryeng 2015-04-06 14:54:43