How to modify "ax = axes(___)" function
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
han han
le 28 Juin 2020
Réponse apportée : Walter Roberson
le 28 Juin 2020
I want to modify this string of code
ax =axes('NextPlot', 'add',...
'XTick', [],...
'YTick', []);
But I want to apply on the specified axes (in gui)
for example: axes1, axes2... etc.
How to modify...
0 commentaires
Réponse acceptée
Walter Roberson
le 28 Juin 2020
ax = axes1;
set(ax, 'NextPlot', 'add',...
'XTick', [],...
'YTick', []);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Axis Labels dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!