blob: 74f73049db7ae0c261c521ceb1a95e096cfba84e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//Example 5.2
//Root locus with respect to a plant open loop pole.
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
//System transfer function and its root locus
s=poly(0,'s');
Gs=s/(s*s+1);
//Title, labels and grid to the figure
exec .\fig_settings.sci; //custom script for setting figure properties
evans(Gs,100)
title(['Root locus vs. damping factor','$c$',...
'for','$1+G(s)=1+1/[s(s+c)]=0$'],'fontsize',3)
zoom_rect([-2 -1.5 2 1.5])
h=legend('');
h.visible = "off"
//------------------------------------------------------------------
|