ナイキスト線図やボード線図のタイトルを消したい
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kento Shirakata
am 18 Jan. 2019
Kommentiert: michio
am 4 Feb. 2019
ナイキスト線図やボード線図を描くと,figureの上部に,「ナイキスト線図」や「ボード線図」とでてきます.
このタイトルを,コードによって消したいのですが,なにか方法はありませんか?
1 Kommentar
Akzeptierte Antwort
Satoshi Kobayashi
am 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 Kommentare
Weitere Antworten (2)
Siehe auch
Kategorien
Mehr zu Title finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!