ナイキスト線図やボード線図のタイトルを消したい
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Kento Shirakata
le 18 Jan 2019
Commenté : michio
le 4 Fév 2019
ナイキスト線図やボード線図を描くと,figureの上部に,「ナイキスト線図」や「ボード線図」とでてきます.
このタイトルを,コードによって消したいのですが,なにか方法はありませんか?
1 commentaire
Réponse acceptée
Satoshi Kobayashi
le 1 Fév 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 commentaires
Plus de réponses (2)
Voir également
Catégories
En savoir plus sur Title dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!