How to erase grid line
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
clear all
set(0,'DefaultAxesXGrid','on');
set(0,'DefaultAxesYGrid','on');
set(0,'DefaultAxesGridLineStyle','-');
 x = [125 250 500 1000];
 y = [1 2 4 3 ];
 semilogx(x,y,'*-');
 xx = num2cell(x);
 xticks(x)
 xticklabels(xx)
I want to keep solid grid lines but erase dotted grid lines .
How do I erase that? 

0 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Annotations in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!