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

조회 수: 1 (최근 30일)
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?

답변 (2개)

Wayne King
Wayne King 2012년 7월 19일
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 2012년 7월 23일
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
Xiwang
Xiwang 2013년 7월 2일
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 2013년 7월 3일
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)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear Model Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by