Effacer les filtres
Effacer les filtres

How to modify "ax = axes(___)" function

3 vues (au cours des 30 derniers jours)
han han
han han 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...

Réponse acceptée

Walter Roberson
Walter Roberson le 28 Juin 2020
ax = axes1;
set(ax, 'NextPlot', 'add',...
'XTick', [],...
'YTick', []);

Plus de réponses (0)

Catégories

En savoir plus sur Visual Exploration dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by