Filter löschen
Filter löschen

how to plot a graph without any marking in axes?

1 Ansicht (letzte 30 Tage)
Krishnendu Mukherjee
Krishnendu Mukherjee am 12 Mär. 2012
whenever im ploting a graph the goddam marking is shown on the axes?how to omit that?

Akzeptierte Antwort

Thomas
Thomas am 12 Mär. 2012
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)

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by