semilogx におけるグリッドラインについて

5 vues (au cours des 30 derniers jours)
taiki kimura
taiki kimura le 26 Mai 2021
Commenté : taiki kimura le 27 Mai 2021
clear all
set(0,'DefaultAxesXGrid','on');% 常に grid on
set(0,'DefaultAxesYGrid','on');% 常に grid on
set(0,'DefaultAxesGridLineStyle','-');
x = [125 250 500 1000];
y = [1 2 4 3 ];
semilogx(x,y,'*-');
xx = num2cell(x);
xticks(x)
xticklabels(xx)
以上を実行すると以下のグラフが出力されます.実線のグリッドラインは残し,点線のグリッドラインとその部分の目盛りを消去する方法を教えてください.

Réponse acceptée

Atsushi Ueno
Atsushi Ueno le 26 Mai 2021
>実線のグリッドラインは残し,点線のグリッドラインとその部分の目盛りを消去する方法を教えてください.
% 実線のグリッドラインは残し
gca.XGrid = 'on'
gca.YGrid = 'on'
% 点線のグリッドラインを消去
gca.XMinorGrid = 'off'
gca.YMinorGrid = 'off'
% その部分の目盛りを消去
gca.XMinorTick = 'off'
gca.YMinorGrid = 'off'
  1 commentaire
taiki kimura
taiki kimura le 27 Mai 2021
解決しました.ありがとうございます

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur ラベルと注釈 dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!