필터 지우기
필터 지우기

How to add tick just for the left axis

조회 수: 45 (최근 30일)
BN
BN 2020년 5월 4일
댓글: qilin guo 2022년 10월 8일
Dear all,
Here is my plot:
I turned off the thicklength in this plot using this code:
set(gca,'TickLength',[0 0])
Now I want to add thick just for left side like this plot below that I found it on the internet:
Thank you all
  댓글 수: 3
BN
BN 2020년 5월 4일
Thank you so much. I'm Sorry for my typo I will correct it in the question title.
dpb
dpb 2020년 5월 4일
It's potentially confusing to readers-- I thought at first you wanted heavier/bolder lines on the one axis vis a vis the other...
I think it's a logical enhancement request -- the way MATLAB HG2 works (similar in this regard to HG1) is annoying in that if you have to axes and box on the two conflict with each other.

댓글을 달려면 로그인하십시오.

채택된 답변

Adam Danz
Adam Danz 2020년 5월 4일
편집: Adam Danz 2020년 5월 4일
Here are two methods to show ticks only on the left axis.
Use yyaxis
This method creates a 2nd y axis on the right that is independently customizable and not used (unless you want to use it).
ax = axes();
box(ax, 'on') % default
% Set axis tick length and direction
ax.XAxis.TickLength = [0 0];
ax.YAxis.TickDirection = 'both';
% Create 2nd y-axis on right and set y axes colors
% to match the x-axis color
yyaxis right
ax2 = gca();
ax.YAxis(1).Color = ax.XAxis.Color;
ax.YAxis(2).Color = ax.XAxis.Color;
% Remove ticks on right axis
ax.YAxis(2).TickValues = [];
% Return control back to the left axes
yyaxis left
See image below for results.
Use xline and yline at axis limits
ax = axes();
box(ax, 'off') % default
ax.XAxis.TickLength = [0 0];
If you want the y-ticks to be in both directions,
ax.YAxis.TickDirection = 'both';
If you want the right and upper axes lines but without ticks, you can make is appear as though 'box' is 'on' by setting the axis limits and adding a xline and yline.
% This syntax just sets the axis limits to their current value
xlim(ax, xlim(ax))
ylim(ax, ylim(ax))
% Set right and upper axis lines to same color as axes
xline(max(xlim(ax)), 'k-', 'Color', ax.XAxis.Color)
yline(max(ylim(ax)), 'k-', 'Color', ax.YAxis.Color)
If the axis limits change after this change, the pseudo-box lines will no longer be positioned correctly so this should happen after all other plotting and positioning is done on the axes. The first method is therefore safer.
Final result for both methods
  댓글 수: 4
BN
BN 2020년 5월 4일
Really thank you. It fixed my problem.
qilin guo
qilin guo 2022년 10월 8일
Very nice!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Grid Lines, Tick Values, and Labels에 대해 자세히 알아보기

태그

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by