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

9 次查看(过去 30 天)
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

采纳的回答

the cyclist
the cyclist 2011-10-20
Is this what you want?
set(gca,'XMinorTick','on')
  1 个评论
Emerson De Souza
Emerson De Souza 2011-10-20
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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by