How can I get more tick marks/precision plotyy()'s y-axis using set() or simple method?

70 ビュー (過去 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.

採用された回答

the cyclist
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)

その他の回答 (1 件)

Ben11
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 件のコメント
Mahetem Moges
Mahetem Moges 2017 年 7 月 25 日
編集済み: Mahetem Moges 2017 年 7 月 25 日
what does "gca" represent in the code you wrote?
the cyclist
the cyclist 2017 年 7 月 25 日
The current axes. See this documentation for details.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeTwo y-axis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by