How can I get more tick marks/precision plotyy()'s y-axis using set() or simple method?
68 次查看(过去 30 天)
显示 更早的评论
I'm currently plotting two data points sharing same independent variable, or I'm plotting the voltage and current versus time onto a single graph with y-axis on both sides as:
[haxes,h1,h2] = plotyy(Time,Voltage,Time,Current);
The data points I'm using is really large and I only want some portions of it so I'm also limiting the display range using:
set(haxes(1),'XLim',[Min Max],'YLim',[MinV MaxV]); %Sets Range set(haxes(2),'Xlim',[Min Max],'YLim',[MinI MaxI]);
When I plot this, I get a good number of tick marks on the X axis or time axis but I get very few number of tick marks displayed on the y-axis. I want something around third order decimal points for voltage and current but the voltage axis has tick marks on every 1 volt and current only has ticks marks on every 20 Amps which is way bigger than I want it. I was wondering if there was a way to get more tick marks using set() if there was some function like,
set(haxes(1),'TicksNumber','100')
that will set the number of tick marks or any other simple way to increase the number of tick marks.
0 个评论
采纳的回答
the cyclist
2014-8-20
You can set the ticks explicitly with the 'YTick' property, for example
set(haxes(1),'YTick',0:0.001:1)
0 个评论
更多回答(1 个)
Ben11
2014-8-20
Yes you can set the Tick marks like this:
set(gca,'XTick',Begin:Increment:End);
so you can customize through the Increment the number of tick marks displayed.
2 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Two y-axis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!