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

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 日

0 投票

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeAxes Appearance についてさらに検索

タグ

質問済み:

2020 年 6 月 28 日

回答済み:

2020 年 6 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by