How can i find the linear analysis in simulink?

조회 수: 191 (최근 30일)
TEE CHEE YEE
TEE CHEE YEE 2021년 4월 11일
댓글: Ravi Ashok Pashchapur 2021년 11월 28일
I'm using 2021a version matlab. In this matlab there dun have the analysis tab for select the linear analysis.
  댓글 수: 1
Ravi Ashok Pashchapur
Ravi Ashok Pashchapur 2021년 11월 28일
Try to install control analysis add on toolbox this might solve your problem!

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

답변 (1개)

Shadaab Siddiqie
Shadaab Siddiqie 2021년 4월 14일
편집: Shadaab Siddiqie 2021년 4월 14일
From my understanding you want to find linear analysis in Simulink. You can open the Model Linearizer App in these ways:
  1. Simulink Toolstrip: On the Apps tab, under Control Systems, click Model Linearizer.
  2. Simulink Toolstrip: On the Apps tab, under Control Systems, click Frequency Response Estimator.
  3. Simulink Toolstrip: On the Linearization tab, click Model Linearizer.
  4. Simulink Toolstrip: On the Linearization tab, click Frequency Response Estimator.
  5. Simulink Toolstrip: On the Linearization tab, click Linearize Block
Also you can use command like so:
mdl = 'watertank';
open_system(mdl)
io(1) = linio('watertank/PID Controller',1,'input');
linsys1 = linearize(mdl,io);
bode(linsys1)

카테고리

Help CenterFile Exchange에서 Modeling에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by