How to delete I/O linearisation points in a simulink model from the workspace?

2 ビュー (過去 30 日間)
yashvin
yashvin 2014 年 8 月 8 日
コメント済み: yashvin 2014 年 8 月 13 日
For example, I set 2 linear analysis points as :
sys = 'watertank';
load_system(sys);
open_system(sys)
sys_io(1)=linio('watertank/PID Controller',1,'input');
sys_io(2)=linio('watertank/Water-Tank System',1,'openoutput');
setlinio(sys,sys_io);
linsys=linearize(sys,sys_io)
Is there any command to clear these 2 points from simulink model?
Hear from you people
Thanks
Yashvin

採用された回答

Arkadiy Turevskiy
Arkadiy Turevskiy 2014 年 8 月 12 日
sys_io=[ ];
setlinio(sys,sys_io);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSensors and Transducers についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by