Problem: Given the open loop for a continuous time system as \[ sys=\frac {5s+1}{s^{2}+2s+3}\]
convert to discrete time using a sampling rate \(0.5\) second, and display the root locus for the discrete system.
Mathematica
Matlab
clear all; close all; s = tf('s'); sys = (5*s+1)/(s^2+2*s+3); Ts = 0.5; %sample time sysd = c2d(sys,Ts,'zoh'); rlocus(sysd) grid
|
|
Maple