Prev: Isometric Text in 3D Plot?
Next: Error mbuild mcc
From: Eric Sender on 1 Jun 2010 04:13 "Thiago Rezende" <thor_ufmg(a)yahoo.com.br> wrote in message <eecdc3a.-1(a)webx.raydaftYaTP>... > Hi, > > I'd like to know if there is a MatLab function that finds the > modified z-transform, that is used in systems with time delays... > This time delay is not an integer !!! > Or, if someone has a function that solves it :-) > > For example, I want to transform from > s-plan to the z-plan the following system using a MatLab function: > > G(s)= 0.73 * e^(-1.66*s) > ----------------------- > (8.42*s + 1)(0.47*s + 1) > > > G(z)= ??? > > Thanks in advance, > > Thiago Has there been a modified z-transform function written for matlab yet?
From: David Wilson on 1 Jun 2010 05:04 "Eric Sender" <esender99(a)removethisgmail.com> wrote in message <hu2feg$nif$1(a)fred.mathworks.com>... > "Thiago Rezende" <thor_ufmg(a)yahoo.com.br> wrote in message <eecdc3a.-1(a)webx.raydaftYaTP>... > > Hi, > > > > I'd like to know if there is a MatLab function that finds the > > modified z-transform, that is used in systems with time delays... > > This time delay is not an integer !!! > > Or, if someone has a function that solves it :-) > > > > For example, I want to transform from > > s-plan to the z-plan the following system using a MatLab function: > > > > G(s)= 0.73 * e^(-1.66*s) > > ----------------------- > > (8.42*s + 1)(0.47*s + 1) > > > > > > G(z)= ??? > > > > Thanks in advance, > > > > Thiago > > Has there been a modified z-transform function written for matlab yet? c2d from the control toolbox. >> G = tf(0.73,conv([8.42 1],[0.47 1]),'iodelay',1.66) Transfer function: 0.73 exp(-1.66*s) * ---------------------- 3.957 s^2 + 8.89 s + 1 >> c2d(G,1) Transfer function: 0.008376 z^2 + 0.05628 z + 0.007358 z^(-2) * ----------------------------------- z^2 - 1.007 z + 0.1058 Sampling time: 1
|
Pages: 1 Prev: Isometric Text in 3D Plot? Next: Error mbuild mcc |