Created
November 13, 2012 16:47
fformacanonicalcontrolable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
J = 0.01; | |
b = 0.1; | |
K = 0.01; | |
num = [K]; | |
den = [J b 0]; | |
%Funcion de transferencia | |
sys = tf(num,den) | |
%Funcion de transferencia a espacios de estados | |
[a, b, c, d] = tf2ss(num, den) | |
/* | |
a = 0 0 | |
1 -10 | |
b = -1 | |
0 | |
c = 0 -1 | |
d = 0 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment