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

3 views (last 30 days)
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...

Accepted Answer

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

More Answers (0)

Categories

Find more on Visual Exploration in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!