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

3 Ansichten (letzte 30 Tage)
han han
han han am 28 Jun. 2020
Beantwortet: Walter Roberson am 28 Jun. 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...

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Visual Exploration finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by