how to plot a graph without any marking in axes?

2 ビュー (過去 30 日間)
Krishnendu Mukherjee
Krishnendu Mukherjee 2012 年 3 月 12 日
whenever im ploting a graph the goddam marking is shown on the axes?how to omit that?

採用された回答

Thomas
Thomas 2012 年 3 月 12 日
By markings, do you mean the Ticks on the Xaxis and Yaxis..
you can remove them by:
figure1 = figure;
axes1 = axes('Parent',figure1,'YTick',zeros(1,0),'XTick',zeros(1,0));
box(axes1,'on');
hold(axes1,'all');
plot(whatever you want to plot)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by