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

3 visualizaciones (últimos 30 días)
han han
han han el 28 de Jun. de 2020
Respondida: Walter Roberson el 28 de Jun. de 2020
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...

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Visual Exploration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by