ナイキスト線図やボード線図のタイトルを消したい
12 views (last 30 days)
Show older comments
Kento Shirakata
on 18 Jan 2019
Commented: michio
on 4 Feb 2019
ナイキスト線図やボード線図を描くと,figureの上部に,「ナイキスト線図」や「ボード線図」とでてきます.
このタイトルを,コードによって消したいのですが,なにか方法はありませんか?
1 Comment
Accepted Answer
Satoshi Kobayashi
on 1 Feb 2019
以下の方法で関数bodeで作成したボード線図のタイトル、Xラベル、Yラベルを消すことができます。
この方法でタイトルを消すと (Hz) が復活するので、タイトルを最初に消してください。
figure
H = tf([1 0.1 7.5],[1 0.12 9 0 0]);
bode(H)
title([]);
t=xlabel([]);
t.String=[];
f=gcf;
f.Children(3).YLabel.String=[];
f.Children(2).YLabel.String=[];
0 Comments
More Answers (2)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!