Removing Upper XTicks ..or Right Y Ticks..How?
105 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I am trying to remove the Xticks that is located only at the upper side and the YTicks that is located right side of my plot.But I could not managed to do it.
I Tried
set(gca, 'XTick',[])
...
set(gca, 'YTick',[])
command but they removed both X ticks up and above or or Both Y Ticks left and right.
Is there any way of removing only one side (up or above...left or right.)
Thanks From Now... Orkun ÖZENER
1 件のコメント
Arturo Moncada-Torres
2011 年 6 月 16 日
Could you please also post the code where you are plotting? Maybe even some sample data?
回答 (2 件)
Bjorn Gustavsson
2011 年 6 月 16 日
set(gca,'box','off')
2 件のコメント
Bjorn Gustavsson
2011 年 6 月 16 日
I don't know if you can. Maybe the simplest is just to plot the box manually?
isholdonque = ishold;
hold on
ax = axis;
plot(ax(2)*[1,1],ax(3:4),'k','linewidth',0.5)
plot(ax(1:2),ax(4)*[1,1],'k','linewidth',0.5)
if isholdonque == 0
hold off
end
Arturo Moncada-Torres
2011 年 6 月 16 日
I recommend you to look at this thread, where your same question has already been answered in several ways ;-).
5 件のコメント
参考
カテゴリ
Help Center および File Exchange で Specifying Target for Graphics Output についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!