필터 지우기
필터 지우기

How to use a model generated from System Identification Toolbox in my work space?

조회 수: 3 (최근 30일)
Hello,
I generated transfer functions for 2 inputs and 1 output using System Identification Toolbox. Then I converted to my workspace: now I have 1x2 idtf file in my workspace. How can I use next this? Basically I want to handle to my model new inputs to generate outputs.

채택된 답변

Rajiv Singh
Rajiv Singh 2019년 9월 3일
The result of estimation is an object of IDTF class. It has properties containing numerical values of numerator and denominator. It has methods for performing simulation (sim, lsim) and analysis (step, bode, pzmap etc)
  • Extract out numerical values of numerator and denominator polynomials using the "Numerator" and "Denominator" properties, as in B = obj.Numerator;
  • Use LSIM method for time domain simulation as in
[y,t] =lsim(obj, input, time)
See idtf documentation reference page for information on supported properties and methods of idtf object.
  댓글 수: 1
Shaoyang Qu
Shaoyang Qu 2021년 3월 25일
Dear Rajiv,
I find the 'lsim' results can be very different from the model output in the system ID app. How can I set the focus to simulation? I'm using the 'transfer function model' method in the app.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Transfer Function Models에 대해 자세히 알아보기

태그

제품


릴리스

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by