Change the output Y-labels in a figure of a multi-output dynamic system
1 回表示 (過去 30 日間)
古いコメントを表示

I don't know how I can change the names of the Y-labels out(1), out(2), out(3) and out(4) in this multiplot figure...
1 件のコメント
maffew
2020 年 2 月 29 日
You could either throw these into multiple plots with step(sys(1))
OR
You could use subplots. For example,
figure
subplot(2,1,1)
step(sys(1))
ylabel('Output 1')
subplot(2,1,2)
step(sys(2))
ylabel('Output 2')
Unfortunately, you lose the larger label. There's a number of options for that. Looks like someone made a thing, https://www.mathworks.com/matlabcentral/fileexchange/7772-suplabel
回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Mathematics and Optimization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!