0% found this document useful (0 votes)
5 views1 page

Program 3

The document presents a MATLAB program that converts state-space representation to transfer function form using matrices A, B, C, and D. The output displays the numerator and denominator coefficients of the resulting transfer function. The numerator is [0, 0, 40, 100] and the denominator is [1, 5, 80, 100].

Uploaded by

cobacok594
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Program 3

The document presents a MATLAB program that converts state-space representation to transfer function form using matrices A, B, C, and D. The output displays the numerator and denominator coefficients of the resulting transfer function. The numerator is [0, 0, 40, 100] and the denominator is [1, 5, 80, 100].

Uploaded by

cobacok594
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

PROGRAM 3:

A = [-5 10 4; -4 0 1; -10 0 0 ];
B = [ 0 ; 0 ; 10];
C = [1 0 0];
D=0;
[num,den] = ss2tf(A,B,C,D);
disp(num);
disp(den);

OUTPUT:

0 0 40.0000 100.0000

1.0000 5.0000 80.0000 100.0000

You might also like