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

3 次查看(过去 30 天)
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...

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Visual Exploration 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by