do not display value on the axis
252 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 5 月 18 日
Maybe the order is not good
plot(1:3,1:3)
set(gca,'xtick',[])
4 件のコメント
その他の回答 (1 件)
Image Analyst
2013 年 5 月 18 日
Try this:
set(gca, 'xtick', [-inf inf]);
6 件のコメント
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]);
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!