EEE 4606 Lab 02 Lab Task: Name: Md. Tawsif Mostafiz ID: 170021031 Sec: A Group: A1

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

EEE 4606

LAB 02 LAB TASK

Name: Md. Tawsif Mostafiz


ID: 170021031
SEC: A
GROUP: A1
Insertion of Data
>> g1 = tf([1 0], 1 );

>> g2=g1;

>> g3= tf( 1, [1 0] );

>> g4= tf( 1, [1 0 0] );

>> h1=g1;

>> ip = 1;

>> op = 3;

>> system = append(g1,g2,g3,g4,h1);

>> connection_matrix = [1 -5 -2 -4 0;

2 1 0 0 0;

3 2 4 0 0;

4 1 0 0 0;

5 3 0 0 0];
Command:
final = connect(system, connection_matrix, ip, op)

Output:
Command:

final = minreal(final)

Output:

You might also like