Azzera filtri
Azzera filtri

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

3 visualizzazioni (ultimi 30 giorni)
han han
han han il 28 Giu 2020
Risposto: Walter Roberson il 28 Giu 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...

Risposta accettata

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

Più risposte (0)

Categorie

Scopri di più su Visual Exploration in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by