How to modify "ax = axes(___)" function
4 ビュー (過去 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...
0 件のコメント
採用された回答
Walter Roberson
2020 年 6 月 28 日
ax = axes1;
set(ax, 'NextPlot', 'add',...
'XTick', [],...
'YTick', []);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Axis Labels についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!