Effacer les filtres
Effacer les filtres

how to plot a graph without any marking in axes?

1 vue (au cours des 30 derniers jours)
Krishnendu Mukherjee
Krishnendu Mukherjee le 12 Mar 2012
whenever im ploting a graph the goddam marking is shown on the axes?how to omit that?

Réponse acceptée

Thomas
Thomas le 12 Mar 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)

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by