ナイキスト線図やボード線図のタイトルを消したい
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Kento Shirakata
il 18 Gen 2019
Commentato: michio
il 4 Feb 2019
ナイキスト線図やボード線図を描くと,figureの上部に,「ナイキスト線図」や「ボード線図」とでてきます.
このタイトルを,コードによって消したいのですが,なにか方法はありませんか?
1 Commento
Risposta accettata
Satoshi Kobayashi
il 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 Commenti
Più risposte (2)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!