How to modify "ax = axes(___)" function
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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...
0 Commenti
Risposta accettata
Walter Roberson
il 28 Giu 2020
ax = axes1;
set(ax, 'NextPlot', 'add',...
'XTick', [],...
'YTick', []);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Axis Labels in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!