필터 지우기
필터 지우기

Can System Identification App identify SIMO or MIMO sytems

조회 수: 35 (최근 30일)
rtn
rtn 2022년 6월 20일
답변: Christine Li 2022년 7월 19일
Hi!
Can the System Identification App also solve for single input multiple output or multi-input multioutput systems?

답변 (1개)

Christine Li
Christine Li 2022년 7월 19일
Hello,
Yes you can use System Identification App for not only SISO but also MIMO or SIMO systems.
You can import MIMO/SIMO inputs and outputs data into the app to get startted, similar like SISO system. Here is an example for MIMO system with script, but you can try out with the app: https://www.mathworks.com/help/ident/ug/dealing-with-multi-variable-systems-identification-and-analysis.html
Here are two key points when you are using the app for SIMO/MIMO system:
  • For SIMO or MIMO system, the input and output will be vectors.
Alteratively, you can create a data object before importing it into the app, as shown in the example:
steam = iddata([GenVolt,Speed],[Pressure,MagVolt],0.05);
steam.InputName = {'Pressure';'MagVolt'};
steam.OutputName = {'GenVolt';'Speed'};
  • You have to manually change the channels to visualize the data:
You can find more examples at this example page: https://www.mathworks.com/help/ident/examples.html?s_tid=CRUX_topnav
Regards,
Christine

카테고리

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

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by