Is there a function in matlab that finds a transmition function of a filter, based on the input and output signals?

1 visualización (últimos 30 días)
I have a non linear filter with unknown transmition function, which i want tio find.The data is input and output signal. Is there a builtin function in matlab for that purpose?

Respuestas (2)

Wayne King
Wayne King el 19 de Jul. de 2012
You can use tfestimate() in the Signal Processing Toolbox to estimate the transfer function.
In the System Identification Toolbox, there is etfe

Rajiv Singh
Rajiv Singh el 23 de Jul. de 2012
See various model estimation functions in System Identification Toolbox such as pem, n4sid, oe, tfest, procest, ssest (the latter 3 are new in R2012a) for linear transfer function estimation. For nonlinear estimation, see nlarx, nlhw.
  2 comentarios
Xiwang
Xiwang el 2 de Jul. de 2013
Hi,
I am also using N4sid for system identification. It seems that the n4sid function just gave me the estimation of the output. How can I get the transfer function? and use this transfer function (model) to estimate the new output (based on some new measured input, but without corresponding measured output).
Thanks very much.
Rajiv Singh
Rajiv Singh el 3 de Jul. de 2013
Do tf(m) where m is the identified model. Type m.a, m.b etc to fetch individual model matrices (type get(m) to see all the properties of the model). You can also do [a,b,c,d,k] = idssdata(m), or [num,den] = tfdata(m)

Iniciar sesión para comentar.

Categorías

Más información sobre Linear Model Identification en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by