Search for notes by fellow students, in your own course and all over the country.
Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.
My Basket
Worksheet for electrostatics£3.13
Standing Wave Ratio£1.25
power system£0.50
Total£4.88
Or: Edit My Basket
Title: MATLAB
Description: MATLAB COURSEWORK ON CONTINUOUS- time TRANSFER FUNCTION PROVIDED WITH CODES ROOT LOCUS GRAPH STEP RESPONSE AGAINST TIME GRAPH
Description: MATLAB COURSEWORK ON CONTINUOUS- time TRANSFER FUNCTION PROVIDED WITH CODES ROOT LOCUS GRAPH STEP RESPONSE AGAINST TIME GRAPH
Document Preview
Extracts from the notes are below, to see the PDF you'll receive please use the links above
clear
%q2
s=tf('s');
G=(s+1)/((s-1)*(s+2))
rlocus(G)
axis([-2
...
5 -0
...
2])
grid
G =
s + 1
----------s^2 + s - 2
Continuous-time transfer function
...
5 6 -0
...
25])
grid
G =
1
------------s^2 + 5 s + 4
Continuous-time transfer function
...
Published with MATLABĀ® R2015a
clear
s=tf('s');
%q3c
G=1/((s+1)*(s+4))
K=10;
F=feedback(K*G,1)
poles=pole(F)
step(F)
axis([-0
...
05 0
...
F =
10
-------------s^2 + 5 s + 14
Continuous-time transfer function
...
5000 + 2
...
5000 - 2
...
func =
s^2 + s
--------2 s^2 + s
Continuous-time transfer function
Title: MATLAB
Description: MATLAB COURSEWORK ON CONTINUOUS- time TRANSFER FUNCTION PROVIDED WITH CODES ROOT LOCUS GRAPH STEP RESPONSE AGAINST TIME GRAPH
Description: MATLAB COURSEWORK ON CONTINUOUS- time TRANSFER FUNCTION PROVIDED WITH CODES ROOT LOCUS GRAPH STEP RESPONSE AGAINST TIME GRAPH