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

You have nothing in your shopping cart yet.

Title: MATLAB
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