do not display value on the axis

조회 수: 260 (최근 30일)
Locks
Locks 2013년 5월 18일
댓글: Trippy 2020년 12월 7일
Hi,
I am looking for a code that allows me to plot a figure where there are no value displayed on the x axis
I tried to use this code here:
set(gca,'xtick',[])
but that didn't work, any suggestions?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 5월 18일
Maybe the order is not good
plot(1:3,1:3)
set(gca,'xtick',[])
  댓글 수: 4
Locks
Locks 2013년 5월 18일
that's working, thank you
Trippy
Trippy 2020년 12월 7일
Try this.
set(gca,'XTick',[],'YTick',[])

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

추가 답변 (1개)

Image Analyst
Image Analyst 2013년 5월 18일
Try this:
set(gca, 'xtick', [-inf inf]);
  댓글 수: 6
Image Analyst
Image Analyst 2013년 5월 18일
It doesn't seem to work because you used plotyy() instead of plot(). Do you really need two y axes? Can you use one common one?
dates=[1,2,3,4]
SPX=[0.1,0.2,0.1,0.2]
VIX=[0.02,0.28,0.2,0.3]
plot(dates,SPX,'gs-');
hold on;
plot(dates,VIX, 'bd-');
set(gca, 'xtick', [-inf inf]);
Locks
Locks 2013년 5월 18일
I need two seperated axis due to the fact that the values on the left side go from around 1000 to around 2000 and on the right from 0 to 100

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

카테고리

Help CenterFile Exchange에서 Two y-axis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by