how to plot a graph without any marking in axes?

조회 수: 3 (최근 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 CenterFile Exchange에서 Graphics에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by