MATLAB: How to modify “ax = axes(___)” function

axaxesgui

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…

Best Answer

ax = axes1;
set(ax, 'NextPlot', 'add',...
'XTick', [],...
'YTick', []);
Related Question