How to add minor ticks to a graph from the command lines?

6 vues (au cours des 30 derniers jours)
Emerson De Souza
Emerson De Souza le 20 Oct 2011
I want to to add the Minor Ticks from the command line.
Currently, I'm editing the Major Ticks as follows:
set(gca)
set(gca,'XTick',0:1:7)
set(gca,'YTick',-1:0.5:1)
but I did not find any documentation for the minor ticks.
I hope to find someone familiar with this subject.
Thanks in advance for your help
Emerson

Réponse acceptée

the cyclist
the cyclist le 20 Oct 2011
Is this what you want?
set(gca,'XMinorTick','on')
  1 commentaire
Emerson De Souza
Emerson De Souza le 20 Oct 2011
Thank you!
that's exactly what I need. It's apparently simple
but takes long to find the answer when we don't know.
I have a final question with handling graphics:
I want to export a graph but without any background, also NO WHITE. The exported image is expected to be transparent to be placed on the top of another one. Only the axis and the displayed curves are allowed to appear.
I tried to do this writing the following lines:
x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y);
axis([-0.2 7 -1.2 1.2])
set(gca)
set(gca,'Color','none')
print -dmeta -f1 -r600 myfigure %or -dbitmap, -djpeg, -dtiff, -depsc
But unfortunately the exported image always have a white background. I wonder if you know what to correctly write.
I thank you in advance for your attention
Emerson

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by