How can i find the linear analysis in simulink?
191 ビュー (過去 30 日間)
古いコメントを表示
I'm using 2021a version matlab. In this matlab there dun have the analysis tab for select the linear analysis.
1 件のコメント
Ravi Ashok Pashchapur
2021 年 11 月 28 日
Try to install control analysis add on toolbox this might solve your problem!
回答 (1 件)
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:
- Simulink Toolstrip: On the Apps tab, under Control Systems, click Model Linearizer.
- Simulink Toolstrip: On the Apps tab, under Control Systems, click Frequency Response Estimator.
- Simulink Toolstrip: On the Linearization tab, click Model Linearizer.
- Simulink Toolstrip: On the Linearization tab, click Frequency Response Estimator.
- 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)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!